Skip to content

Commit 5b3990d

Browse files
committed
updates
1 parent 1408328 commit 5b3990d

File tree

16 files changed

+58
-33
lines changed

16 files changed

+58
-33
lines changed

Diff for: _includes/footer.html

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
<footer class="p2pu-footer">
22
<div class="container">
33
<div class="col-md-12 cc-by-sa">
4-
<img src="{{site.baseurl}}/img/cc-icons.png" alt="CC-BY-SA Icon">
5-
<p>
4+
<!--<img src="{{site.baseurl}}/img/cc-icons.png" alt="CC-BY-SA Icon">-->
5+
<p><a id="img-link" href="https://p2pu.org"><img id="footer-logo" src="{{site.baseurl}}/img/logo.png"></a></p>
6+
<p>Built using <a target="_blank" href="https://howto.p2pu.org/"> Course in a Box</a>, a project of <a href="https://p2pu.org">P2PU</a>.</p>
7+
<p style="margin-top:2em; margin-bottom: 0;">
68
Unless otherwise noted, all the materials on this site are licensed under a
79
<a target="_blank" href="http://creativecommons.org/licenses/by-sa/4.0/">
8-
Creative Commons Attribution Share Alike 4.0</a> Unported license.
10+
CC BY-SA 4.0 license</a>.
911
</p>
1012
</div>
1113
</div>

Diff for: _includes/navigation.html

+6-9
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</div>
1010

1111
<!-- Collect the nav links, forms, and other content for toggling -->
12-
<div class="container">
12+
<div class="container-fluid">
1313
<div class="collapse navbar-collapse" id="p2pu-menu">
1414
<ul class="nav navbar-nav">
1515
<li>
@@ -24,15 +24,12 @@
2424
</a>
2525
</li>
2626
{% endfor %}
27-
<!-- <li>
28-
<a href="https://community.p2pu.org/" target="_blank">Discussion</a>
29-
</li> -->
30-
</ul>
31-
{% if site.github.owner_name == 'p2pu' %}
32-
<ul class="p2pu-logo">
33-
<li><a class="p2pu-tab" href="https://www.p2pu.org/"><img src="{{ site.baseurl }}/img/logo.png" alt="{{ site.title }}" /></a></li>
27+
<!--
28+
<li class="p2pu-logo">
29+
<a class="p2pu-tab" href="https://www.p2pu.org/"><img src="{{ site.baseurl }}/img/logo.png" alt="{{ site.title }}" /></a>
30+
</li>
31+
-->
3432
</ul>
35-
{% endif %}
3633
</div>
3734
<!-- /.navbar-collapse -->
3835
</div>

Diff for: _layouts/index.html

+2-3
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,17 @@
33
---
44

55
<!-- Banner -->
6-
<div class="jumbotron">
6+
<div class="jumbotron" id="jumbotron-homepage">
77
<div class="container text-center">
88
{% if site.jumbotron_image %}
99
<img src="{{ site.baseurl }}/img/{{ site.jumbotron_image }}"
1010
alt="{{ site.title }} Icon" />
1111
{% endif %}
1212
<header>
1313
<h1>{{ site.data.course.description }}</h1>
14-
<h2>An open online course that introduces the P2PU learning circles model in theory and in practice.</h2>
14+
<h2><mark>An open online course that introduces the P2PU learning circles model in theory and in practice.</mark></h2>
1515
</header>
1616
</div>
17-
1817
</div>
1918
<div class="container">
2019
<div class="clearfix">

Diff for: _sass/_landing.scss

+14-4
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ section {
2020
}
2121
.jumbotron {
2222
background: $jumbotron-color;
23-
background-position: bottom center;
23+
background-position: top center;
2424
background-repeat: repeat, no-repeat;
2525
background-image: url(../img/header-overlay.png), url('../img/#{$jumbotron-image}');
2626
background-size: auto, cover;
2727
color: $white;
2828
position: relative;
29-
height: 100vh;
29+
height: 80vh;
3030

3131

3232

@@ -53,11 +53,21 @@ section {
5353
.jumbotron header h1 {
5454
font-family: $font-family-sans-serif;
5555
font-size: 4em;
56-
text-shadow: 0 0 5px $gray-darker;
56+
text-shadow: 5px 5px 10px $gray-darker;
57+
margin: auto;
58+
margin-bottom: .3em;
59+
font-weight: 700;
5760
}
5861

5962
.jumbotron header h2 {
60-
text-shadow: 0 0 5px $gray-darker;
63+
//text-shadow: 0 0 5px $gray-darker;
64+
max-width: 900px;
65+
margin: auto;
66+
line-height: inherit;
67+
mark{
68+
color: #fcfcfc;
69+
background-color: #00b5bd;
70+
}
6171
}
6272

6373

Diff for: _sass/_nav.scss

+6-4
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,13 @@
33
}
44

55
.p2pu-logo {
6-
7-
position: absolute;
6+
position: absolute !important;
87
right: 0;
9-
108
img {
119
width: 75px;
1210
}
13-
}
11+
@media (max-width: 991px){
12+
position: relative !important;
13+
}
14+
}
15+

Diff for: _sass/p2pu-css-framework/_footer.scss

+12-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22

33
background-color: $gray-dark;
44
color: $gray-snow;
5-
padding: 1.5em 0 2em 0;
5+
padding: 2.5em 0 2.5em 0;
66
margin-top: 60px;
77
line-height: 1.5;
88
margin-bottom: 0;
9+
text-align: center;
910

1011
a {
1112
color: $gray-snow;
@@ -64,4 +65,14 @@
6465
font-size: 1.1em;
6566
}
6667
}
68+
}
69+
70+
#img-link{
71+
text-decoration: none;
72+
border: none;
73+
}
74+
75+
#footer-logo{
76+
height: 4em;
77+
margin: 0;
6778
}

Diff for: css/p2pustrap-custom.scss

+9-3
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,12 @@
5252
}
5353

5454
blockquote {
55-
padding: 1em;
55+
padding: 1.2em;
5656
margin: 0;
5757
border: 0;
58-
border-radius: 25px;
5958
background: #DFF7F4;
6059
font-style: normal;
61-
line-height: 1.8;
60+
font-size: inherit;
6261

6362
a, a:hover {
6463
font-weight: bold;
@@ -71,3 +70,10 @@ blockquote {
7170
border: 0;
7271
color: $gray-lighter;
7372
}
73+
74+
#jumbotron-homepage{
75+
display: flex;
76+
align-items: center;
77+
}
78+
79+

Diff for: img/banner.jpg

3.72 MB
Loading

Diff for: img/banner_alt.jpg

384 KB
Loading

Diff for: img/favicon.ico

1.37 KB
Binary file not shown.

Diff for: img/logo.png

-5.67 KB
Loading

Diff for: modules/Course Selection/_posts/2019-01-02-read-&-watch.md

-2
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@ Don’t worry if you can’t find a course that you like on P2PU’s <a href="ht
3636
- Of course, you can also simply search on Google or any other search engine for “free online course in <topic>”.
3737
- Finally, we keep a fairly up to date list of popular courses providers [on our website](https://github.com/p2pu/notes-on-edtech/blob/gh-pages/index.md). You can review this to find providers who you may not have heard of before.
3838

39-
40-
🧶—If there is a topic that you are interested in but can’t find a good course for, let us know on the “<a href="https://community.p2pu.org/t/what-topics-are-missing/2786" target="_blank">What Topics are Missing?</a>” post on the community forum.
4139
## Evaluating courses
4240
You do not need to be an expert in the course material in order to facilitate a learning circle. However, whether you are looking on P2PU’s course database or elsewhere on the web, you’ll want to review the course before you create a learning circle. A few key points to consider when evaluating courses:
4341
- Is the course free and do you expect that all resources will remain available for the duration of the learning circle? (A Creative Commons license is a good sign!)

Diff for: modules/Course Selection/_posts/2019-01-03-do-make-say-think.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ After you’ve finished, take another 15 minutes for each group report back to t
3434

3535
🧶—Check out the “[Latest Courses and Topics](https://community.p2pu.org/c/learning-circles/courses-and-topics)” category on the community forum, and share your thoughts about any courses or topics that you investigated. If there is a topic that you are interested in but can’t find a good course for, let us know on the “<a href="https://community.p2pu.org/t/what-topics-are-missing/2786" target="_blank">What Topics are Missing?</a>” thread.
3636

37-
<a class="btn btn-primary" href="https://community.p2pu.org/c/learning-circles/courses-and-topics">Go to the forum</a>
37+
<p class="text-center"><a class="btn btn-primary" href="https://community.p2pu.org/c/learning-circles/courses-and-topics">Go to the forum</a></p>
3838

3939

4040

Diff for: modules/Facilitation/_posts/2019-01-03-do-make-say-think.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ Finally, as a group, come up with a definition of what facilitation means to you
2323

2424
🧶—Share your group definitions in the “[Tips for New Facilitators](https://community.p2pu.org/t/tips-for-new-facilitators/2730/last)” post on the community forum. If you came up with any other scenarios, you can share those [as a new topic](https://community.p2pu.org/c/learning-circles/facilitation) within the Facilitation category.
2525

26-
<a class="btn btn-primary" href="https://community.p2pu.org/c/learning-circles/facilitation">Go to the forum</a>
26+
<p class="text-center"><a class="btn btn-primary" href="https://community.p2pu.org/c/learning-circles/facilitation">Go to the forum</a></p>

Diff for: modules/Intro to Learning Circles/_posts/2019-01-03-do-make-say-think.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ The [P2PU website](https://www.p2pu.org/en/) is the hub for all the tools and re
3535

3636
🧶—Now that you have a P2PU account, head over to the “<a href="https://community.p2pu.org/t/introduce-yourself/1571/269" target="_blank">Introduce Yourself</a>” thread on the P2PU community forum (if you're prompted to log in again on the forum, you can use your new P2PU credentials to do so; you don’t need to create a separate account!). Say hi 👋 and let us know that you’re working through this course!
3737

38-
<a class="btn btn-primary" href="https://community.p2pu.org/t/introduce-yourself/1571/269">Go to the forum</a>
38+
<p class="text-center"><a class="btn btn-primary" href="https://community.p2pu.org/t/introduce-yourself/1571/269">Go to the forum</a></p>

Diff for: modules/Logistics & Tools/_posts/2019-01-03-do-make-say-think.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ If you’re able to fill in a number of fields, you can save your learning circl
2525

2626
🧶—When you’re finished, talk as a group through your plans. What are the sticking points? Can the group help each other in any way? Would the group benefit from speaking with a past facilitator? Share these thoughts on the “[Creating a learning circle](https://community.p2pu.org/c/learning-circles/creating-a-learning-circle)” category on the community forum.
2727

28-
<a class="btn btn-primary" href="https://community.p2pu.org/c/learning-circles/creating-a-learning-circle">Go to the forum</a>
28+
<p class="text-center"><a class="btn btn-primary" href="https://community.p2pu.org/c/learning-circles/creating-a-learning-circle">Go to the forum</a></p>

0 commit comments

Comments
 (0)