jekyll-clean-dark 0.1.2 → 0.1.3

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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/_layouts/home.html +36 -0
  3. metadata +3 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b072a13f84f81186d0168e7a759c7b65bcb26168
4
- data.tar.gz: bf3daa3ca986cf1179db57670d54a748dc4dda86
3
+ metadata.gz: b9df3f6eb4f11cdadb567dd2a7bdfcb8c1748c55
4
+ data.tar.gz: e2a0089689867e564290da6dac6dd70e45c2f35a
5
5
  SHA512:
6
- metadata.gz: d8e94d5882214d90f17f6d527d6eec2ca0c533464339c5dd8da95820927dab65d179f5ed4f738508e801ec1e7a058c2b1c6abba41e48b41ad4627c433bc94ae5
7
- data.tar.gz: 11346d2f8a40880b4a51fec49b1c36ffe0d4f50852e0aa8a2cbe39ac7f40330c1b604b2653cf2ace52ffeb7659728dfd5100307207232d4599b5d6f4ffdf8817
6
+ metadata.gz: d14fd477f2e7250119ec696c325341f19864ec271bacb8d9b5fbe675a9a024d19eafbe7e9cb3b42901f7dc9adf62091d602c8f41974d2c54addb47c6a6c407cc
7
+ data.tar.gz: f875f9ee49fc3a5aec353d605f78d04a08cff613d5978a5766fd847a35567147b452f46e7f612ae744d62042f3dacdd95aa596b2ce0a850017ae78116e4ec531
@@ -0,0 +1,36 @@
1
+ ---
2
+ layout: page
3
+ ---
4
+
5
+ {% for post in site.posts limit:10 %}
6
+ <h2 class="post-title">
7
+ <a href="{{ post.url | relative_url }}">
8
+ {{ post.title }}
9
+ </a>
10
+ </h2>
11
+
12
+ <div class="post-meta">
13
+ <div class="post-time">
14
+ <i class="fa fa-calendar"></i>
15
+ <time datetime='{{ post.date | date: "%Y-%m-%d" }}'>{{ post.date | date_to_string }}</time>
16
+ </div>
17
+ <ul>
18
+ {% for tag in post.tags %}
19
+ <li><a href="{{'/tag/' | append: tag | relative_url }}">{{ tag }}</a></li>
20
+ {% endfor %}
21
+ </ul>
22
+ </div>
23
+
24
+ <div class="post-descr">
25
+ <p>
26
+ {{ post.description }}
27
+ </p>
28
+ </div>
29
+ {% endfor %}
30
+
31
+
32
+ <div class="post-footer">
33
+ <div class="column-full">
34
+ <h3><a href="{{ '/archive.html' | relative_url }}">Blog archive</a></h3>
35
+ </div>
36
+ </div>
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-clean-dark
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pavel Makhov
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-11-14 00:00:00.000000000 Z
11
+ date: 2017-11-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -58,6 +58,7 @@ files:
58
58
  - _includes/sidebar.html
59
59
  - _includes/social.html
60
60
  - _includes/yandex-metrica.html
61
+ - _layouts/home.html
61
62
  - _layouts/page.html
62
63
  - _layouts/post.html
63
64
  - _layouts/tag_index.html