creek-jekyll-theme 0.5.2 → 1.0.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/_config.yml +5 -4
- data/_data/navigation/main.yml +9 -5
- data/_includes/masthead.html +3 -3
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7726554d448090fe8c7c1a612e1a49b719b390f71f32984c8edcf30e5bb277f8
|
4
|
+
data.tar.gz: 9c4570567b7ae6d705a5ab344e64ade0f692e2bdd2bd3461b77320c3f4a6804f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b044c5d05f5a11d5706c021dbd726a9dd059dcdf937b21d4e87543faaec749cf4dc6e12f33b89fca33d8cf780bb391546f281680e9ebeca1d9bd22d1b2a6e6f4
|
7
|
+
data.tar.gz: cd161bb5fe6d2cfe59016644c285115699ddd09c1c098c0b6004e2d851cffc061f5910eb6ad19130ffac89726339b3b03e019733ec4e15a0374cecad510a42cc
|
data/_config.yml
CHANGED
@@ -102,7 +102,7 @@ analytics:
|
|
102
102
|
# Site Author
|
103
103
|
author:
|
104
104
|
name : "Andy Coates"
|
105
|
-
avatar :
|
105
|
+
avatar : "https://avatars.githubusercontent.com/u/8012398?v=4"
|
106
106
|
bio : "Software engineer with a passion for building working, scalable, systems"
|
107
107
|
location : "UK"
|
108
108
|
email :
|
@@ -206,9 +206,9 @@ defaults:
|
|
206
206
|
layout: single
|
207
207
|
author_profile: true
|
208
208
|
read_time: true
|
209
|
-
comments:
|
209
|
+
comments: true
|
210
210
|
share: true
|
211
|
-
related:
|
211
|
+
related: true
|
212
212
|
# _pages
|
213
213
|
- scope:
|
214
214
|
path: "_pages"
|
@@ -235,10 +235,11 @@ timezone: "Europe/London" # https://en.wikipedia.org/wiki/List_of_tz_database_ti
|
|
235
235
|
# Plugins (previously gems:)
|
236
236
|
plugins:
|
237
237
|
- jekyll-paginate
|
238
|
-
- jekyll-sitemap
|
239
238
|
- jekyll-gist
|
240
239
|
- jekyll-feed
|
241
240
|
- jekyll-include-cache
|
241
|
+
# Last to ensure all generated content is in the site map
|
242
|
+
- jekyll-sitemap
|
242
243
|
|
243
244
|
# mimic GitHub Pages with --safe
|
244
245
|
whitelist:
|
data/_data/navigation/main.yml
CHANGED
@@ -1,9 +1,13 @@
|
|
1
|
-
# Main masthead nav menu
|
1
|
+
# Main masthead nav menu.
|
2
|
+
# Links are absolute as this masthead is shared across sites.
|
3
|
+
|
2
4
|
- title: "Quick-Start Guide"
|
3
|
-
url: /docs/quick-start-guide/
|
5
|
+
url: https://www.creekservice.org/docs/quick-start-guide/
|
4
6
|
- title: "Demos"
|
5
|
-
url: /demos/
|
7
|
+
url: https://www.creekservice.org/demos/
|
8
|
+
- title: "Posts"
|
9
|
+
url: https://www.creekservice.org/posts/
|
6
10
|
- title: "About"
|
7
|
-
url: /about/
|
11
|
+
url: https://www.creekservice.org/about/
|
8
12
|
- title: "Terms & Privacy Policy"
|
9
|
-
url: /terms/
|
13
|
+
url: https://www.creekservice.org/terms/
|
data/_includes/masthead.html
CHANGED
@@ -5,16 +5,16 @@
|
|
5
5
|
<div class="masthead__menu">
|
6
6
|
<nav id="site-nav" class="greedy-nav">
|
7
7
|
{% unless logo_path == empty %}
|
8
|
-
<a class="site-logo" href="{{ '/' }}"><img src="{{ logo_path | relative_url }}" alt="{{ site.masthead_title | default: site.title }}"></a>
|
8
|
+
<a class="site-logo" href="{{ '/' | relative_url }}"><img src="{{ logo_path | relative_url }}" alt="{{ site.masthead_title | default: site.title }}"></a>
|
9
9
|
{% endunless %}
|
10
|
-
<a class="site-title" href="{{ '/' }}">
|
10
|
+
<a class="site-title" href="{{ '/' | relative_url }}">
|
11
11
|
{{ site.masthead_title | default: site.title }}
|
12
12
|
{% if site.subtitle %}<span class="site-subtitle">{{ site.subtitle }}</span>{% endif %}
|
13
13
|
</a>
|
14
14
|
<ul class="visible-links">
|
15
15
|
{%- for link in site.data.navigation.main -%}
|
16
16
|
<li class="masthead__menu-item">
|
17
|
-
<a href="{{ link.url }}"{% if link.description %} title="{{ link.description }}"{% endif %}>{{ link.title }}</a>
|
17
|
+
<a href="{{ link.url | relative_url }}"{% if link.description %} title="{{ link.description }}"{% endif %}>{{ link.title }}</a>
|
18
18
|
</li>
|
19
19
|
{%- endfor -%}
|
20
20
|
</ul>
|