jekyll-theme-consulting 0.8.4 → 0.8.5

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: 901e4b7bd438ac7354731b1ea6edb29ad70b960cb10b3e4a02a0aaac61933e35
4
- data.tar.gz: a981a4533dfee5301464c701c943eacd10f4c7e294bbb868ede9786b2a58bbb9
3
+ metadata.gz: e603175f25f46b59e21febf485dbb64e9b38e71fec86246b4ce94e43d58c5721
4
+ data.tar.gz: c405f2e145773be9ba695ca48ed2ea462cb4691d34e626899ac7b49393e8b7f8
5
5
  SHA512:
6
- metadata.gz: be10235a1497cd00119c6f655deb26069566e459eb4df15bd893415e55fe9b403dcc22d6628a6c437c54568726954d1e570a66db591d12fd76ed2e149b073100
7
- data.tar.gz: da2173d4be41f7d49a499f775e2ed189151462ce1a188126f3ef3d60076b5abbc18b93e3385f085e2c3c059e58be67d6c5aa3194527ce51c542cd5cfd2759056
6
+ metadata.gz: c7f539701699d89a42a0931a2350c1ea96b0d2a7371c364c29715ab61eeb48cb70a5499b8ae4d00bda37b5dc0fe9528edc3627f8255ddd64a07623202fe6e28a
7
+ data.tar.gz: e30b5545d033c0f669307398b6f6acec7003e5a2841d832e5c108e4ae691ed8698e78071a39d7bc95af44f523b20252e4cd6581b545a94b0bf093c2ac75780d4
data/README.md CHANGED
@@ -207,18 +207,14 @@ Uses the [simple Jekyll search plugin][simple-jekyll-search].
207
207
 
208
208
  Space image in the banner: the Pillars of Creation, courtesy of NASA.
209
209
 
210
- Repository [Jekyll logo][jekyll-logo] icon licensed under a [Creative Commons Attribution 4.0 International License][cc4-license].
211
-
212
210
  ## License
213
211
 
214
- The theme is available as open source under the terms of the [CC-BY-4.0](LICENSE).
212
+ The theme is available as open source under the terms of the [CC-BY-NC-SA-4.0](LICENSE).
215
213
 
216
214
  [ajlkn]: https://aj.lkn.io/
217
- [cc4-license]: http://choosealicense.com/licenses/cc-by-4.0/
218
215
  [contributor-covenant]: http://contributor-covenant.org
219
216
  [cookieconsent]: https://github.com/osano/cookieconsent
220
217
  [html5up]: https://html5up.net/
221
- [jekyll-logo]: https://github.com/jekyll/brand
222
218
  [recaptcha-documentation]: https://developers.google.com/recaptcha/intro
223
219
  [recaptcha-registering]: https://www.google.com/recaptcha/admin
224
220
  [simple-jekyll-search]: https://github.com/christian-fei/Simple-Jekyll-Search
data/_includes/head.html CHANGED
@@ -24,6 +24,6 @@
24
24
  <noscript><link rel="stylesheet" href="{{ 'assets/css/noscript.css' | absolute_url }}" /></noscript>
25
25
  <noscript><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:400,600,400italic,600italic|Roboto+Slab:400,700&display=swap" /></noscript>
26
26
  <noscript><link rel="stylesheet" href="{{ 'assets/css/fontawesome-all.min.css' | absolute_url }}" /></noscript>
27
- <noscript><link rel="stylesheet" href="{{ 'assets/css/cookieconsent.css' | absolute_url }}" /></noscript>
27
+ <noscript><link rel="stylesheet" href="{{ 'assets/css/cookieconsent.min.css' | absolute_url }}" /></noscript>
28
28
  {% seo %}
29
29
  </head>
@@ -0,0 +1,6 @@
1
+ {%- assign x12 = include.x1 | plus: include.x2 | times: 0.5 | round -%}
2
+ {%- assign y12 = include.y1 | plus: include.y2 | times: 0.5 | round -%}
3
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none">
4
+ <path d="M0,100L0,{{ include.ys }}Q{{ include.x1 }},{{ include.y1 }} {{ x12 }},{{ y12 }}Q{{ include.x2 }},{{ include.y2 }} 100,{{include.ye}}L100,100L0,100Z"></path>
5
+ <circle cx="{{ include.cx }}" cy="{{ include.cy }}" r="{{ include.r }}"/>
6
+ </svg>
@@ -0,0 +1,6 @@
1
+ {%- assign x12 = include.x1 | plus: include.x2 | times: 0.5 | round -%}
2
+ {%- assign y12 = include.y1 | plus: include.y2 | times: 0.5 | round -%}
3
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none">
4
+ <path d="M0,0L0,{{ include.ys }}Q{{ include.x1 }},{{ include.y1 }} {{ x12 }},{{ y12 }}Q{{ include.x2 }},{{ include.y2 }} 100,{{include.ye}}L100,0L0,0Z"></path>
5
+ <circle cx="{{ include.cx }}" cy="{{ include.cy }}" r="{{ include.r }}"/>
6
+ </svg>
@@ -2,26 +2,59 @@
2
2
  ---
3
3
  {%- assign lang = page.lang | default: site.lang | default: 'en' -%}
4
4
  {%- assign menu = site.data.menus[page.menu][lang] -%}
5
+ {%- assign header = page.header | default: site.header -%}
5
6
  {%- assign title = page.title | default: site.title -%}
6
- {%- assign subtitle = page.subtitle | default: site.subtitle -%}
7
7
  {%- assign description = page.description | default: site.description -%}
8
+ {%- assign stylesheets = page.stylesheets | default: site.stylesheets -%}
9
+ {%- assign scripts = page.scripts | default: site.scripts -%}
8
10
  <!DOCTYPE html>
11
+ <!--
12
+ Consulting template by MOODULE
13
+ https://github.com/moodule/jekyll-theme-consulting
14
+ Free for personal and commercial use under the CCA 4.0 license
15
+ -->
9
16
  <html lang="{{ lang }}">
10
17
 
11
- {% include head.html title=title subtitle=subtitle %}
18
+ {% include head.html title=title subtitle=subtitle %}
12
19
 
13
- <body>
20
+ <body>
14
21
 
15
- {% include navigation.html menu=menu %}
22
+ <style type="text/css">
23
+ .upper-half svg {
24
+ fill: rgba(10,100,130,0.4);
25
+ }
26
+ .lower-half svg {
27
+ fill: rgba(130,0,130,0.4);
28
+ }
29
+ </style>
16
30
 
17
- <main class="page-content" aria-label="Content">
18
- <div class="wrapper">
19
- {{ content }}
20
- </div>
21
- </main>
31
+ <!-- Wrapper -->
32
+ <div id="wrapper">
22
33
 
23
- {% include footer.html %}
34
+ <div class="upper-half" style="position: fixed; z-index: 2; top:0; left: 0; width: 100vw; height: 100vh; display: flex; flex-direction: column;">
35
+ {% include waves/top.html ys=80 ye=20 x1=40 y1=80 x2=60 y2=20 cx=50 cy=50 r=4 %}
36
+ </div>
37
+
38
+ <div class="upper-half" style="position: fixed; z-index: 4; top:0; left: 0; width: 100vw; height: 100vh; display: flex; flex-direction: column;">
39
+ {% include waves/top.html ys=70 ye=30 x1=20 y1=90 x2=40 y2=20 cx=10 cy=76 r=2%}
40
+ </div>
41
+
42
+ <div class="upper-half" style="position: fixed; z-index: 4; top:0; left: 0; width: 100vw; height: 100vh; display: flex; flex-direction: column;">
43
+ {% include waves/top.html ys=65 ye=35 x1=15 y1=85 x2=35 y2=20 cx=10 cy=76 r=2%}
44
+ </div>
45
+
46
+ <div class="lower-half" style="position: fixed; z-index: 3; bottom:0; left: 0; width: 100vw; height: 100vh; display: flex; flex-direction: column;">
47
+ {% include waves/bottom.html ys=80 ye=20 x1=40 y1=80 x2=60 y2=20 cx=50 cy=50 r=4 %}
48
+ </div>
49
+
50
+ <div class="upper-half" style="position: fixed; z-index: 1; bottom:0; left: 0; width: 100vw; height: 100vh; display: flex; flex-direction: column;">
51
+ {% include waves/bottom.html ys=60 ye=80 x1=20 y1=80 x2=60 y2=100 cx=80 cy=88 r=2 %}
52
+ </div>
24
53
 
25
- </body>
54
+ </div>
55
+
56
+ {% include footer.html %}
57
+
58
+ </body>
26
59
 
27
60
  </html>
@@ -5,6 +5,7 @@ body, input, select, textarea {
5
5
  font-family: _font(family);
6
6
  font-size: 13pt;
7
7
  font-weight: _font(weight);
8
+ text-align: justify;
8
9
  line-height: 1.65;
9
10
  }
10
11
 
@@ -121,7 +121,7 @@
121
121
  width: inherit;
122
122
  height: inherit;
123
123
  margin-left: (-0.875em / 2);
124
- font-size: 1.5rem;
124
+ font-size: 2rem;
125
125
  line-height: inherit;
126
126
  text-indent: 0;
127
127
  }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-consulting
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.4
4
+ version: 0.8.5
5
5
  platform: ruby
6
6
  authors:
7
- - David Mougeolle
7
+ - Moodule
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-01-22 00:00:00.000000000 Z
11
+ date: 2020-01-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -68,7 +68,7 @@ dependencies:
68
68
  version: '12.0'
69
69
  description:
70
70
  email:
71
- - david.mougeolle@moodule.net
71
+ - moodule@protonmail.com
72
72
  executables: []
73
73
  extensions: []
74
74
  extra_rdoc_files: []
@@ -92,6 +92,8 @@ files:
92
92
  - _includes/social.html
93
93
  - _includes/thread.html
94
94
  - _includes/toggle.html
95
+ - _includes/waves/bottom.html
96
+ - _includes/waves/top.html
95
97
  - _layouts/default.html
96
98
  - _layouts/home.html
97
99
  - _layouts/index.html
@@ -272,7 +274,7 @@ files:
272
274
  - assets/webfonts/fa-solid-900.woff2
273
275
  homepage: https://github.com/moodule/jekyll-theme-consulting
274
276
  licenses:
275
- - CC-BY-4.0
277
+ - CC-BY-NC-SA-4.0
276
278
  metadata: {}
277
279
  post_install_message:
278
280
  rdoc_options: []