alembic-jekyll-theme 2.1.0 → 2.1.1
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/_includes/button.html +1 -1
- data/_includes/nav-categories.html +1 -1
- data/_includes/nav-default.html +2 -2
- data/_includes/nav-footer.html +1 -1
- data/_includes/nav-header.html +2 -2
- data/_includes/nav-social.html +1 -1
- data/_includes/post-categories.html +1 -1
- data/_includes/post-list.html +2 -2
- data/_includes/post-related.html +1 -1
- data/_includes/site-logo.html +1 -1
- data/_includes/site-search.html +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 00b13a2f28d1c88a8c4c4d067e87fab470fb8375
|
4
|
+
data.tar.gz: 890fe87efbc201537023fd08f8b0c5bf4bc0df77
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7afa209bc1b6e313eccc3c2b6e65b15aa149538b70b6b91667b0f40e80eccb4607b1b3c51712c91b8338c986d916814f05b48d14489c2e6f30abd3ee40024200
|
7
|
+
data.tar.gz: c2ce88bd8bff8cdd795f92c60087ff674272bcfae6871a6e89c7cf266ff0951d7741ff9404a57828eac98b07f30bc82e53370c6dcf8875b328845008e4ac09ac
|
data/_includes/button.html
CHANGED
@@ -1 +1 @@
|
|
1
|
-
<a class="button" href="{{ include.link }}"
|
1
|
+
<a class="button" href="{{ include.link }}"{% if include.color %} style="background: {{ include.color }}"{% endif %}>{{ include.text }}{% if include.icon %} {% include icon.html id=include.icon %}{% endif %}</a>
|
@@ -2,7 +2,7 @@
|
|
2
2
|
<ul class="list list--categories">
|
3
3
|
{% for item in site.categories %}
|
4
4
|
<li class="item item--category">
|
5
|
-
<a href="#{{ item | first | slugify }}"
|
5
|
+
<a href="#{{ item | first | slugify }}">{{ item | first }}</a>
|
6
6
|
</li>
|
7
7
|
{% endfor %}
|
8
8
|
</ul>
|
data/_includes/nav-default.html
CHANGED
@@ -12,9 +12,9 @@
|
|
12
12
|
|
13
13
|
{% if item.collectionpage %}
|
14
14
|
{% assign collectiondata = site.collections | where: "label", item.collectionpage | first %}
|
15
|
-
<a href="{{ url }}"
|
15
|
+
<a href="{{ url }}">{{ collectiondata.title }}</a>
|
16
16
|
{% else %}
|
17
|
-
<a href="{{ url }}"
|
17
|
+
<a href="{{ url }}">{{ item.title }}</a>
|
18
18
|
{% endif %}
|
19
19
|
</li>
|
20
20
|
{% endunless %}
|
data/_includes/nav-footer.html
CHANGED
data/_includes/nav-header.html
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
</button>
|
6
6
|
<ul class="list list--nav">
|
7
7
|
{% for item in site.navigation_header %}
|
8
|
-
|
8
|
+
|
9
9
|
{% if item[1] contains '://' %}
|
10
10
|
{% assign url = item[1] %}
|
11
11
|
{% else %}
|
@@ -13,7 +13,7 @@
|
|
13
13
|
{% endif %}
|
14
14
|
|
15
15
|
<li class="item item--nav{% if item[1] == page.url %} item--current{% endif %}">
|
16
|
-
<a href="{{ url }}"
|
16
|
+
<a href="{{ url }}">{{ item[0] }}</a>
|
17
17
|
</li>
|
18
18
|
{% endfor %}
|
19
19
|
</ul>
|
data/_includes/nav-social.html
CHANGED
@@ -7,7 +7,7 @@
|
|
7
7
|
{% assign has_categories = true %}
|
8
8
|
<li class="item item--post">
|
9
9
|
<article class="article article--post typeset">
|
10
|
-
<h3><a href="{{ site.baseurl }}{{ page.url }}"
|
10
|
+
<h3><a href="{{ site.baseurl }}{{ page.url }}">{{ page.title }}</a></h3>
|
11
11
|
{% include post-meta.html %}
|
12
12
|
{{ page.excerpt | markdownify | truncatewords: 60 }}
|
13
13
|
</article>
|
data/_includes/post-list.html
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
<li class="item item--post">
|
6
6
|
<article class="article article--post">
|
7
7
|
|
8
|
-
<h2><a href="{{ site.baseurl }}{{ page.url }}"
|
8
|
+
<h2><a href="{{ site.baseurl }}{{ page.url }}">{{ page.title }}</a></h2>
|
9
9
|
{% include post-meta.html %}
|
10
10
|
{{ page.excerpt | markdownify | truncatewords: 60 }}
|
11
11
|
|
@@ -22,7 +22,7 @@
|
|
22
22
|
<li class="item item--post">
|
23
23
|
<article class="article article--post">
|
24
24
|
|
25
|
-
<h2><a href="{{ site.baseurl }}{{ page.url }}"
|
25
|
+
<h2><a href="{{ site.baseurl }}{{ page.url }}">{{ page.title }}</a></h2>
|
26
26
|
{% include post-meta.html %}
|
27
27
|
{{ page.excerpt | markdownify | truncatewords: 60 }}
|
28
28
|
|
data/_includes/post-related.html
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
<li class="item item--post">
|
6
6
|
<article class="article article--post typeset">
|
7
7
|
|
8
|
-
<h4><a href="{{ site.baseurl }}{{ page.url }}"
|
8
|
+
<h4><a href="{{ site.baseurl }}{{ page.url }}">{{ page.title }}</a></h4>
|
9
9
|
{% include post-meta.html %}
|
10
10
|
{{ page.excerpt | markdownify | truncatewords: 20 }}
|
11
11
|
|
data/_includes/site-logo.html
CHANGED
data/_includes/site-search.html
CHANGED
@@ -32,7 +32,7 @@
|
|
32
32
|
return `
|
33
33
|
<li class="item item--result">
|
34
34
|
<article class="article typeset">
|
35
|
-
<h4><a href="${item.url}"
|
35
|
+
<h4><a href="${item.url}">${item.title}</a></h4>
|
36
36
|
<p>${item.excerpt}</p>
|
37
37
|
</article>
|
38
38
|
</li>`;
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: alembic-jekyll-theme
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.1.
|
4
|
+
version: 2.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Darnes
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-07-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|