jekyll-theme-consulting 0.11.6 → 0.11.7

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: b48653e94f290d5dbdedd5c66f960f525002c09197719fe15531538b7177a0b4
4
- data.tar.gz: ac3821396deacc68a3a740e0042793d741cc5cffd0cbb076029d13986f8a9280
3
+ metadata.gz: 84466ba76e65aea21e8617e027780a7dd7f6101203cc0db77a5f73dd33bd9a78
4
+ data.tar.gz: 4857fdc2d5a69896a634d4987baf864805f196845a6379950d03b3e5e87a9fc3
5
5
  SHA512:
6
- metadata.gz: e3011cd2e85a593e193e9297e32834f7662012068051b4ecc2e1b0ee8651b99abb20ec152f88df7067d29e2b02f20a33372d885d8d0d4c0ceb3f1a2eec6f8428
7
- data.tar.gz: 65d0f10218d2f15306a0efbb64ad3badc2cb527e08265b7370187fa56e9d65be1d28c396ea62a52a8a9bb955ff0f8273bbcd441ca351e06c595a0d28148b58ce
6
+ metadata.gz: b3b77deb533c4d794a68454a5372754926277fe7a46ec1e34f455a3e6d6c76ccc2f715e3aea77d0a14e599984a16de231ddb15bf5926d2c807889a90876d5665
7
+ data.tar.gz: d87b7c0b6e642928612bd4c05f7acb81633fe7d86988ce36c4332161c295ed9f559c3e07c56e3bd708e839d3d45c2fae1e0fa5a3a9547f05f2a68ad235beeea7
data/404.md CHANGED
@@ -1,39 +1,7 @@
1
1
  ---
2
- layout: home
2
+ layout: 404
3
3
  lang-ref: 404-page
4
4
  title: Error 404
5
5
  permalink: /404.html
6
- header:
7
- title: 404
8
- subtitle: Error
9
- style:
10
- class: inverted
11
- image:
12
- url: /assets/images/content/pillars-of-creation.webp
13
- position: right
14
- size: auto 100vh
15
- banner:
16
- title: "Page not found"
17
- description: >-
18
- Looking for more?
19
- style:
20
- class: inverted
21
- image:
22
- url: "/assets/images/content/pillars-of-creation.webp"
23
- position: right
24
- size: auto 100vh
25
- button:
26
- url: "#contact"
27
- label: "Contact me :)"
28
6
  ---
29
- <!-- Section -->
30
- <section>
31
- <header class="major">
32
- <h2>Getting back to the main website</h2>
33
- </header>
34
- <p>All the pages of the website are listed in the navigation menu.</p>
35
- <p>You can access it by clicking the ||| icon in the top left corner of your screen.</p>
36
- </section>
37
7
 
38
-
39
- {% include contact.html %}
data/_layouts/404.html ADDED
@@ -0,0 +1,39 @@
1
+ ---
2
+ layout: home
3
+ lang-ref: 404-page
4
+ title: Error 404
5
+ permalink: /404.html
6
+ header:
7
+ title: 404
8
+ subtitle: Error
9
+ style:
10
+ class: inverted
11
+ image:
12
+ url: /assets/images/content/pillars-of-creation.webp
13
+ position: right
14
+ size: auto 100vh
15
+ banner:
16
+ title: "Page not found"
17
+ description: >-
18
+ Looking for more?
19
+ style:
20
+ class: inverted
21
+ image:
22
+ url: "/assets/images/content/pillars-of-creation.webp"
23
+ position: right
24
+ size: auto 100vh
25
+ button:
26
+ url: "#contact"
27
+ label: "Contact me :)"
28
+ ---
29
+ <!-- Section -->
30
+ <section>
31
+ <header class="major">
32
+ <h2>Getting back to the main website</h2>
33
+ </header>
34
+ <p>All the pages of the website are listed in the navigation menu.</p>
35
+ <p>You can access it by clicking the ||| icon in the top left corner of your screen.</p>
36
+ </section>
37
+
38
+
39
+ {% include contact.html %}
@@ -1,12 +1,12 @@
1
1
  ---
2
2
  ---
3
- {%- assign lang = page.lang | default: site.lang | default: 'en' -%}
3
+ {%- assign lang = page.lang | default: layout.lang | default: site.lang | default: 'en' -%}
4
4
  {%- assign menu = site.data.menus[page.menu][lang] -%}
5
- {%- assign header = page.header | default: site.header -%}
6
- {%- assign title = page.title | default: site.title -%}
7
- {%- assign description = page.description | default: site.description -%}
8
- {%- assign stylesheets = page.stylesheets | default: site.stylesheets -%}
9
- {%- assign scripts = page.scripts | default: site.scripts -%}
5
+ {%- assign header = page.header | default: layout.header | default: site.header -%}
6
+ {%- assign title = page.title | default: layout.title | default: site.title -%}
7
+ {%- assign description = page.description | default: layout.description | default: site.description -%}
8
+ {%- assign stylesheets = page.stylesheets | default: layout.stylesheets | default: site.stylesheets -%}
9
+ {%- assign scripts = page.scripts | default: layout.scripts | default: site.scripts -%}
10
10
  <!DOCTYPE html>
11
11
  <!--
12
12
  Consulting template by MOODULE
data/_layouts/home.html CHANGED
@@ -1,9 +1,9 @@
1
1
  ---
2
2
  layout: default
3
3
  ---
4
- {%- assign banner = page.banner | default: site.banner -%}
5
- {%- assign title = banner.title | default: page.title | default: site.title -%}
6
- {%- assign subtitle = banner.subtitle | default: page.subtitle | default: site.subtitle -%}
7
- {%- assign description = banner.description | default: page.description | default: site.description -%}
4
+ {%- assign banner = page.banner | default: layout.banner | default: site.banner -%}
5
+ {%- assign title = banner.title | default: page.title | default: layout.title | default: site.title -%}
6
+ {%- assign subtitle = banner.subtitle | default: page.subtitle | default: layout.subtitle | default: site.subtitle -%}
7
+ {%- assign description = banner.description | default: page.description | default: layout.description | default: site.description -%}
8
8
  {% include banner.html title=title subtitle=subtitle description=description button=banner.button style=banner.style %}
9
9
  {{ content }}
@@ -1,11 +1,11 @@
1
1
  ---
2
2
  ---
3
- {%- assign lang = page.lang | default: site.lang | default: 'en' -%}
3
+ {%- assign lang = page.lang | default: layout.lang | default: site.lang | default: 'en' -%}
4
4
  {%- assign menu = site.data.menus[page.menu][lang] -%}
5
- {%- assign title = page.title | default: site.title -%}
6
- {%- assign description = page.description | default: site.description -%}
7
- {%- assign stylesheets = page.stylesheets | default: site.stylesheets -%}
8
- {%- assign scripts = page.scripts | default: site.scripts -%}
5
+ {%- assign title = page.title | default: layout.title | default: site.title -%}
6
+ {%- assign description = page.description | default: layout.description | default: site.description -%}
7
+ {%- assign stylesheets = page.stylesheets | default: layout.stylesheets | default: site.stylesheets -%}
8
+ {%- assign scripts = page.scripts | default: layout.scripts | default: site.scripts -%}
9
9
  <!DOCTYPE html>
10
10
  <!--
11
11
  Consulting template by MOODULE
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-consulting
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.6
4
+ version: 0.11.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Moodule
@@ -99,6 +99,7 @@ files:
99
99
  - _includes/toggle.html
100
100
  - _includes/waves/bottom.html
101
101
  - _includes/waves/top.html
102
+ - _layouts/404.html
102
103
  - _layouts/contact.html
103
104
  - _layouts/default.html
104
105
  - _layouts/home.html