minima-rock 0.5.0 → 0.6.0
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/_data/navigation.yml +2 -0
- data/_includes/categories_archive.html +15 -0
- data/_includes/categories_list.html +10 -0
- metadata +3 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dd705cf00b4cd9e274c908584f0ced8364097e8a8de5629edfadc1d8f66905a4
|
|
4
|
+
data.tar.gz: e5e4fc38b10738942d140dac4a530e23bcf0e94df0f383f5c791dc2ce5f8848a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dd54b571d112841463799c2fc7012dc2fce7b2902ea99e7154227f51ecc20a2eff7709f538f91b9a7165358065f38d80276c5721c82ef9c341f3a70461946889
|
|
7
|
+
data.tar.gz: 2988817b58a2c6fd13987bbbdc4bb83d9a2e36c22c6d5c0f44196a0b01d36f46d5dc9553795ea10d4bb855c281e24a873d0f3691b561854785624d18c1d57e54
|
data/_data/navigation.yml
CHANGED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<ul>
|
|
2
|
+
{% for category in site.categories %}
|
|
3
|
+
{% if category[0] == page.category %}
|
|
4
|
+
{% assign post_list = category[1] %}
|
|
5
|
+
{%- for post in post_list -%}
|
|
6
|
+
<li>
|
|
7
|
+
<span>{{ post.date | date: "%Y-%m-%d" }}</span> »
|
|
8
|
+
<a href="{{ post.url | relative_url }}">
|
|
9
|
+
{{ post.title | escape }}
|
|
10
|
+
</a>
|
|
11
|
+
</li>
|
|
12
|
+
{%- endfor -%}
|
|
13
|
+
{%- endif -%}
|
|
14
|
+
{% endfor %}
|
|
15
|
+
</ul>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<ul class="category-list">
|
|
2
|
+
{% assign categories = site.categories | sort %}
|
|
3
|
+
{% for category in categories %}
|
|
4
|
+
<li class="site-category">
|
|
5
|
+
<a class="site-category-text" href="{{ site.baseurl }}/categories/{{ category | first | slugify }}.html">
|
|
6
|
+
{{ category[0] }}
|
|
7
|
+
</a>
|
|
8
|
+
</li>
|
|
9
|
+
{% endfor %}
|
|
10
|
+
</ul>
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: minima-rock
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.6.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Joel Glovier
|
|
@@ -95,6 +95,8 @@ files:
|
|
|
95
95
|
- _data/google_analytics.yml
|
|
96
96
|
- _data/navigation.yml
|
|
97
97
|
- _data/social.yml
|
|
98
|
+
- _includes/categories_archive.html
|
|
99
|
+
- _includes/categories_list.html
|
|
98
100
|
- _includes/disqus_comments.html
|
|
99
101
|
- _includes/footer.html
|
|
100
102
|
- _includes/google-analytics.html
|