creek-jekyll-theme 0.5.2 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cb7fb6c3ceeedd63ad3c17adfe0b6d04b63fac8eacdc32df234152fd6e118698
4
- data.tar.gz: c6995f34497ad29b9cf18293260041a374ad2778e3f8dc78e7f1a40f9e9a8b9d
3
+ metadata.gz: 7726554d448090fe8c7c1a612e1a49b719b390f71f32984c8edcf30e5bb277f8
4
+ data.tar.gz: 9c4570567b7ae6d705a5ab344e64ade0f692e2bdd2bd3461b77320c3f4a6804f
5
5
  SHA512:
6
- metadata.gz: 295abfde170889de61b791a5cb0b49a8a3166fcdf3a87b01fc173cba849e87794fc27d5b3797a53522ca0952ada081824328486fe00d30ea846d2aba23416438
7
- data.tar.gz: d45e9fa9210690497af3edf2b51cc4084c9ca77ab6651f6422e13cbfa7c2ce38c88b4db1160174f9d9a43322428d854ccd76268a5e747052efaec0d892f5982b
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 : # path of avatar image, e.g. "/assets/images/bio-photo.jpg"
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: false # true
209
+ comments: true
210
210
  share: true
211
- related: false # true
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:
@@ -1,9 +1,13 @@
1
- # Main masthead nav menu, shared across sites.
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/
@@ -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,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: creek-jekyll-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.2
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Creek Service - Big Andy Coates