creek-jekyll-theme 0.5.2 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_config.yml +7 -4
- data/_data/navigation/main.yml +9 -5
- data/_includes/masthead.html +3 -3
- metadata +16 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a5b8af9c40fb1db49d6a8897ca915846ed7d7378fe4719aeedf06cc0fd926ff3
|
4
|
+
data.tar.gz: 1fc8e722e21fa75604812f23de873cded7995fda6a2099042afe2cdae752dc3f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b9c657651127f6f813fe3041b2f11146366ecf0310def90df68f8d77a6669d1454e051087a3ce0525035f3e6c113ad99c4ed131a30556ed5ad6ecdda2cabfab0
|
7
|
+
data.tar.gz: 7241597adc99d361168bbde3d9781b94f253ab96b0adb6184960871a3f9cf6c7b8e71cb476f385566b5afb45a7364538e4d6e4163ac188ca03e8f6fa4fbcc127
|
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,12 @@ 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
|
+
- jekyll-last-modified-at
|
242
|
+
# Last to ensure all generated content is in the site map
|
243
|
+
- jekyll-sitemap
|
242
244
|
|
243
245
|
# mimic GitHub Pages with --safe
|
244
246
|
whitelist:
|
@@ -246,6 +248,7 @@ whitelist:
|
|
246
248
|
- jekyll-sitemap
|
247
249
|
- jekyll-gist
|
248
250
|
- jekyll-feed
|
251
|
+
- jekyll-last-modified-at
|
249
252
|
- jekyll-include-cache
|
250
253
|
|
251
254
|
# Archives
|
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>
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: creek-jekyll-theme
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Creek Service - Big Andy Coates
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-11-
|
11
|
+
date: 2022-11-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -128,6 +128,20 @@ dependencies:
|
|
128
128
|
- - "~>"
|
129
129
|
- !ruby/object:Gem::Version
|
130
130
|
version: 0.12.0
|
131
|
+
- !ruby/object:Gem::Dependency
|
132
|
+
name: jekyll-last-modified-at
|
133
|
+
requirement: !ruby/object:Gem::Requirement
|
134
|
+
requirements:
|
135
|
+
- - "~>"
|
136
|
+
- !ruby/object:Gem::Version
|
137
|
+
version: '1.1'
|
138
|
+
type: :runtime
|
139
|
+
prerelease: false
|
140
|
+
version_requirements: !ruby/object:Gem::Requirement
|
141
|
+
requirements:
|
142
|
+
- - "~>"
|
143
|
+
- !ruby/object:Gem::Version
|
144
|
+
version: '1.1'
|
131
145
|
- !ruby/object:Gem::Dependency
|
132
146
|
name: bundler
|
133
147
|
requirement: !ruby/object:Gem::Requirement
|