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.
- checksums.yaml +4 -4
- data/_layouts/home.html +36 -0
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b9df3f6eb4f11cdadb567dd2a7bdfcb8c1748c55
|
|
4
|
+
data.tar.gz: e2a0089689867e564290da6dac6dd70e45c2f35a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d14fd477f2e7250119ec696c325341f19864ec271bacb8d9b5fbe675a9a024d19eafbe7e9cb3b42901f7dc9adf62091d602c8f41974d2c54addb47c6a6c407cc
|
|
7
|
+
data.tar.gz: f875f9ee49fc3a5aec353d605f78d04a08cff613d5978a5766fd847a35567147b452f46e7f612ae744d62042f3dacdd95aa596b2ce0a850017ae78116e4ec531
|
data/_layouts/home.html
ADDED
|
@@ -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.
|
|
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-
|
|
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
|