doccoli-jekyll 1.2.1 → 1.2.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ee050a393b710a97c22ab2c131de1ff141bb64692cac57f3ce6d1e162e703d84
4
- data.tar.gz: 342ca0538e7627141ac9fa1707ce800f64000d5e86aabe1952c82c1b2308ca1a
3
+ metadata.gz: 63c19abe854b8d98f383851754a0b2b2bef577fd13cb8411d808c53251865160
4
+ data.tar.gz: 57560e5252c808243db73c0d4eb7f4bc4c03c332b936636bf0e2dd81b6f89516
5
5
  SHA512:
6
- metadata.gz: 7bd53756a46da34e1a1a85519eb93ce2bcecf2ea52a6f0e975bf7e537bc9d7da13879748698e43f86ece5695286cb3349c730f19f81d9f87781a121d7807601c
7
- data.tar.gz: 2154ba78539731bd2317f5567898bb14bf32c542ab89851a57b1d0359457b859d5adcfb333b957b7425905a1650e86e9bd5435220036ef66922b8afb8a2532d4
6
+ metadata.gz: bbdb4f88f60dbb768cc353b01351c9ae373cd995ac2c13860606af13c65fec6d54eb5204da1348e16c0ae28d2c3dddc1ccea4bf4cbf5503242ea63ee8b9eca7b
7
+ data.tar.gz: 33d6393f48cf26a0302c04495f60d83cc124e88f94b9af7db34b82b418be061eb3547e1aea2e5ca8816fc898b5cdfcddfc3d6e2f3f4b417b181d05bedcf9072f
data/_layouts/home.html CHANGED
@@ -5,44 +5,22 @@ layout: default
5
5
 
6
6
  <h1 href="{{ "/" | relative_url }}">{{ site.title | escape }}</h1>
7
7
 
8
- <p class="">Subscribe <a href="{{ '/feed.xml' | relative_url }}">via RSS</a></p>
9
-
10
8
  <hr>
11
9
 
10
+ <p class="right">Subscribe <a href="{{ '/feed.xml' | relative_url }}">via RSS</a></p>
12
11
 
13
12
  {{ content }}
14
13
 
15
-
16
- {% assign post = site.posts.first %}
17
-
18
- <h3>
19
- <a href="{{ post.url | relative_url }}">{{ post.title | escape }}</a>
20
- </h3>
21
- {% assign date_format = site.doccoli-jekyll.date_format | default: "%b %-d, %Y" %}
22
- <span>{{ post.date | date: date_format }}</span>
23
-
24
-
25
- <p>
26
- {{ post.content }}
27
- </p>
28
-
29
-
30
-
31
-
32
-
33
- <!--
34
- <ul class="pad-vertically">
14
+ <ul class="pad-vertically posts">
35
15
  {% for post in site.posts %}
36
16
  <li>
37
17
  <h3>
38
18
  <a href="{{ post.url | relative_url }}">{{ post.title | escape }}</a>
39
19
  </h3>
40
-
41
- {% assign date_format = site.doccoli-jekyll.date_format | default: "%b %-d, %Y" %}
42
- <span>{{ post.date | date: date_format }}</span>
20
+ {{ post.excerpt }}
43
21
 
44
22
  </li>
45
23
  {% endfor %}
46
24
  </ul>
47
- -->
25
+
48
26
  </div>
data/_layouts/post.html CHANGED
@@ -23,6 +23,17 @@ layout: default
23
23
  {{ content }}
24
24
  </div>
25
25
 
26
+ <div class="bar">
27
+ {% if page.next.url %}
28
+ <a class="left" href="{{ page.next.url }}" title="Article suivant">← {{ page.next.title }}</a>
29
+ {% endif %}
30
+
31
+ {% if page.previous.url %}
32
+ <a class="right" href="{{ page.previous.url }}" title="Article précédent"> {{ page.previous.title }} →</a>
33
+ {% endif %}
34
+ </div>
35
+
36
+
26
37
  {% if site.disqus.shortname %}
27
38
  {% include disqus_comments.html %}
28
39
  {% endif %}
@@ -65,12 +65,10 @@ h6 {
65
65
 
66
66
  h1 {
67
67
  font-size: 280%;
68
- font-weight: normal;
69
68
  }
70
69
 
71
70
  h2 {
72
71
  font-size: 200%;
73
- font-weight: normal;
74
72
  }
75
73
 
76
74
  h3 {
@@ -106,7 +104,7 @@ hr {
106
104
  }
107
105
 
108
106
  p {
109
- margin: .8em 0;
107
+ margin: 0 0 1.5em 0;
110
108
  }
111
109
 
112
110
  menu {
@@ -114,7 +112,7 @@ menu {
114
112
  list-style: none;
115
113
  }
116
114
 
117
- nav ul {
115
+ nav ul, .posts {
118
116
  list-style: none;
119
117
  list-style-image: none;
120
118
  }
@@ -235,7 +233,6 @@ th {
235
233
 
236
234
  .wrapper {
237
235
  margin: 0 auto;
238
- text-align: justify;
239
236
  }
240
237
 
241
238
  .left {
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: doccoli-jekyll
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.1
4
+ version: 1.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marvin Danig