jekyll-theme-seanh 0.1.1 → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2eb9daf55a59916905f4a53ea0020116461d48788c66c0379df0ef0c38bd5b12
4
- data.tar.gz: fecab4e6aaaa0149c0b68e59edb88e4e10a9f8950acbcafdc986b24ef7c7718e
3
+ metadata.gz: 9acc5d0474c36945ecb38f7f55790ad8eac58c6568618e1eaea92b713f17db98
4
+ data.tar.gz: b58c9d968c9f60c56ab7de78571e866bd9b0f831cb450dad1f1771913742b09f
5
5
  SHA512:
6
- metadata.gz: d9a87c57faaaca7c2d4a0674152a44a38ebbbf73eec9a5ff5a8f9abc46c7fd21ea3c394764de2abcafeccc98a95ce9779138469e64865968d93ff54c55416241
7
- data.tar.gz: 5da4d93268f18eac39a1a914b8f6a568c4bce460716df4bc19cb3e66620d33f6f8001a353809acc6ca0765c130343f32673465f2a79026ddd5b4438f1d3b70ac
6
+ metadata.gz: 5928593f32ed5cefb18e7c78a0ff3d53c5ad4c7edaf8ec9f368af1de1bacfc9235f744868464b42a5968dea20f64e2589e7af378ce7125bb236a45b696b1cba8
7
+ data.tar.gz: 370daf656b061aced9d0b78bce0e927b334c603c796b8f8130788c8a33fb6c4729102c7e8bcbdbe1a4d1c14a6d32c196827c3e579595e4f9907a3855494d3974
@@ -0,0 +1,18 @@
1
+ <ul style="list-style-type: none;">
2
+ {% if include.tag %}
3
+ {% assign posts = tag[1] %}
4
+ {% else %}
5
+ {% assign posts = site.posts %}
6
+ {% endif %}
7
+
8
+ {% for post in posts %}
9
+ {% if include.drafts %}
10
+ {% unless post.draft %}{% continue %}{% endunless %}
11
+ {% else %}
12
+ {% if post.draft %}{% continue %}{% endif %}
13
+ {% endif %}
14
+ {% if include.untagged and post.tags.size > 0 %}{% continue %}{% endif %}
15
+ {% include post_item.html post=post %}
16
+ {% endfor %}
17
+ </ul>
18
+
@@ -0,0 +1,12 @@
1
+ <ul>
2
+ {% for tag in site.tags %}
3
+ <li>
4
+ <h3 id="{{ tag[0] }}">{{ tag[0] }}</h3>
5
+ {% include post_list.html tag=tag %}
6
+ </li>
7
+ {% endfor %}
8
+ <li>
9
+ <h3 id="Untagged">Untagged</h3>
10
+ {% include post_list.html untagged=true %}
11
+ </li>
12
+ </ul>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-seanh
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sean Hammond
@@ -92,7 +92,9 @@ files:
92
92
  - _includes/anchor_headings.html
93
93
  - _includes/fullbleed.html
94
94
  - _includes/gist.html
95
- - _includes/post_link.html
95
+ - _includes/post_item.html
96
+ - _includes/post_list.html
97
+ - _includes/tag_list.html
96
98
  - _includes/wide.html
97
99
  - _includes/widecode.html
98
100
  - _includes/wideimg.html