doccoli-jekyll 1.2.0 → 1.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b9d574db788365fc5291957ebf24657231669f4d43b886c93fbcb80a55965d98
4
- data.tar.gz: c5a4f1dd06798e79c41b57d6a26f57b815d7ecf7df19d428a1f3e4ea7ae411df
3
+ metadata.gz: ee050a393b710a97c22ab2c131de1ff141bb64692cac57f3ce6d1e162e703d84
4
+ data.tar.gz: 342ca0538e7627141ac9fa1707ce800f64000d5e86aabe1952c82c1b2308ca1a
5
5
  SHA512:
6
- metadata.gz: 7ca7a81944d7a76c0ce0600d1cb68b92b3439f92f462d1ca70eca51af85e2ce36eff958affca200cd4a0e2cffd7f5c9a7b376d52487d50780c559eca705fd5c6
7
- data.tar.gz: 638cb998a234cc25d58432d024ae4f69d9476cde132e0e3ca76dc6e73ae8f22db3a79c44c9f97e70f67f83f3734d4118a241cce2b110928802f389232676aac6
6
+ metadata.gz: 7bd53756a46da34e1a1a85519eb93ce2bcecf2ea52a6f0e975bf7e537bc9d7da13879748698e43f86ece5695286cb3349c730f19f81d9f87781a121d7807601c
7
+ data.tar.gz: 2154ba78539731bd2317f5567898bb14bf32c542ab89851a57b1d0359457b859d5adcfb333b957b7425905a1650e86e9bd5435220036ef66922b8afb8a2532d4
@@ -8,7 +8,7 @@
8
8
  {% include header.html %}
9
9
  {% include sidebar.html %}
10
10
 
11
- <main class="container fold pad" aria-label="Content">
11
+ <main class="container fold" aria-label="Content">
12
12
  {{ content }}
13
13
  </main>
14
14
 
data/_layouts/home.html CHANGED
@@ -1,16 +1,36 @@
1
1
  ---
2
2
  layout: default
3
3
  ---
4
- <div class="wrapper">
4
+ <div class="wrapper pad">
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
+
8
10
  <hr>
9
11
 
10
- <p class="right">Subscribe <a href="{{ '/feed.xml' | relative_url }}">via RSS</a></p>
11
12
 
12
13
  {{ content }}
13
14
 
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
+ <!--
14
34
  <ul class="pad-vertically">
15
35
  {% for post in site.posts %}
16
36
  <li>
@@ -24,5 +44,5 @@ layout: default
24
44
  </li>
25
45
  {% endfor %}
26
46
  </ul>
27
-
47
+ -->
28
48
  </div>
data/_layouts/page.html CHANGED
@@ -2,7 +2,7 @@
2
2
  layout: default
3
3
  ---
4
4
 
5
- <div class="wrapper">
5
+ <div class="wrapper pad">
6
6
  <article>
7
7
  <header>
8
8
  <h1>{{ page.title | escape }}</h1>
data/_layouts/post.html CHANGED
@@ -2,7 +2,7 @@
2
2
  layout: default
3
3
  ---
4
4
 
5
- <div class="wrapper">
5
+ <div class="wrapper pad">
6
6
  <article itemscope itemtype="http://schema.org/BlogPosting">
7
7
  <header>
8
8
  <h1 itemprop="name headline">{{ page.title | escape }}</h1>
@@ -81,6 +81,9 @@
81
81
  }
82
82
 
83
83
  .navi-menu {
84
+ margin: 0;
85
+ padding: 0;
86
+ white-space: nowrap;
84
87
  li {
85
88
  a:hover,
86
89
  &#active a:hover,
@@ -91,7 +94,6 @@
91
94
  >menu li a {
92
95
  display: block;
93
96
  }
94
- white-space: nowrap;
95
97
  menu {
96
98
  white-space: nowrap;
97
99
  height: 45px;
@@ -102,7 +104,6 @@
102
104
  background-repeat: no-repeat;
103
105
  }
104
106
  a {
105
- /* font-weight: 700; */
106
107
  line-height: 44px;
107
108
  padding: 13px 20px;
108
109
  color: #555;
@@ -16,7 +16,7 @@ html {
16
16
  -ms-text-size-adjust: 100%;
17
17
  -webkit-text-size-adjust: 100%;
18
18
  font-size: 1em;
19
- line-height: 1.4;
19
+ line-height: 1.8;
20
20
  text-rendering: optimizelegibility;
21
21
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
22
22
  -webkit-backface-visibility: hidden;
@@ -109,15 +109,7 @@ p {
109
109
  margin: .8em 0;
110
110
  }
111
111
 
112
- menu,
113
- ul,
114
- ol {
115
- margin: 0;
116
- padding: 0;
117
- }
118
-
119
- menu,
120
- ul {
112
+ menu {
121
113
  list-style-image: none;
122
114
  list-style: none;
123
115
  }
@@ -579,7 +571,7 @@ th, td {
579
571
  margin: 0 0;
580
572
  }
581
573
  .container {
582
- width: calc(100vw - 208px);
574
+ width: calc(100vw - 224px);
583
575
  margin-left: 208px;
584
576
  }
585
577
  }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: doccoli-jekyll
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marvin Danig
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-05-08 00:00:00.000000000 Z
11
+ date: 2018-05-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll