jekyll-theme-simplex 0.9.1 → 0.9.2
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 +16 -0
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 20d4911b78605ef916527f0e628dec8da5ac56cc89d3a5ce7f8ca6abd05dbe81
|
4
|
+
data.tar.gz: aacc42d2226b5b07520e4b2bc6b26f40ec5743882b7102473f5bd3418707dfc3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 98c0b72bbe1b57418cedb5788e35f7de089c777caf454a35c185bef44b3992583c094059df3662fc75d1d679798ce8365a282cdc3e4f108d671f0537173123ac
|
7
|
+
data.tar.gz: a98b1e4066d42a214885838db9cb195820b43b4c851907cc0254acbe23bef190bd138daee6cb101b69448dbba0a4bb41b8fb1fd315d98992bcd403afbc4ea264
|
data/_layouts/home.html
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
|
5
|
+
<section class="feed">
|
6
|
+
<section class="feed__description">
|
7
|
+
<h1>{{ site.title }}</h1>
|
8
|
+
<p>{{ site.description }}</p>
|
9
|
+
</section>
|
10
|
+
|
11
|
+
{% for post in site.posts %}
|
12
|
+
<section class="snippet snippet_{{ post.id | slugify: "ascii" }}">
|
13
|
+
{% include snippet.html post=post %}
|
14
|
+
</section>
|
15
|
+
{% endfor %}
|
16
|
+
</section>
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-simplex
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ondrej Golasowski
|
@@ -69,6 +69,7 @@ files:
|
|
69
69
|
- _includes/snippet.html
|
70
70
|
- _layouts/category.html
|
71
71
|
- _layouts/default.html
|
72
|
+
- _layouts/home.html
|
72
73
|
- _layouts/page.html
|
73
74
|
- _layouts/post.html
|
74
75
|
- _sass/_feed.scss
|