jekyll-theme-consulting 0.10.17 → 0.11.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (42) hide show
  1. checksums.yaml +4 -4
  2. data/.github/LICENSE +437 -0
  3. data/.github/README.md +222 -0
  4. data/404.md +39 -0
  5. data/_includes/banner.html +6 -4
  6. data/_includes/head.html +1 -0
  7. data/_includes/header.html +5 -4
  8. data/_includes/navigation.html +1 -1
  9. data/_includes/scripts.html +0 -1
  10. data/_includes/sidebar.html +2 -0
  11. data/_includes/social.html +1 -1
  12. data/_includes/thread.html +1 -2
  13. data/_sass/large.scss +1 -0
  14. data/_sass/large/base/_typography.scss +0 -15
  15. data/_sass/large/components/_language.scss +0 -0
  16. data/_sass/large/layout/_main.scss +0 -23
  17. data/_sass/main.scss +1 -0
  18. data/_sass/main/base/_page.scss +1 -0
  19. data/_sass/main/components/_features.scss +0 -40
  20. data/_sass/main/components/_icon.scss +17 -0
  21. data/_sass/main/components/_language.scss +33 -0
  22. data/_sass/main/layout/_header.scss +0 -33
  23. data/_sass/main/layout/_main.scss +2 -2
  24. data/_sass/main/layout/_sidebar.scss +7 -7
  25. data/_sass/medium.scss +1 -0
  26. data/_sass/medium/base/_typography.scss +0 -5
  27. data/_sass/medium/components/_language.scss +0 -0
  28. data/_sass/small.scss +1 -0
  29. data/_sass/small/components/_language.scss +0 -0
  30. data/_sass/small/layout/_main.scss +0 -16
  31. data/assets/css/font-certifications.css +42 -0
  32. data/assets/css/font-certifications.min.css +1 -0
  33. data/assets/css/images/split.curve.svg +40 -0
  34. data/assets/css/images/split.curve.wide.svg +40 -0
  35. data/assets/js/main.js +0 -11
  36. data/assets/js/main.min.js +1 -1
  37. data/assets/webfonts/certifications.eot +0 -0
  38. data/assets/webfonts/certifications.svg +20 -0
  39. data/assets/webfonts/certifications.ttf +0 -0
  40. data/assets/webfonts/certifications.woff +0 -0
  41. metadata +17 -3
  42. data/assets/js/jquery.scrolly.min.js +0 -2
data/404.md 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,8 +1,10 @@
1
1
  <!-- Banner -->
2
2
  <section id="banner"
3
- {%- if include.style -%}
4
- class="{{ include.style.class | default: '' }}"
5
- style="background-image: url({{ include.style.image | absolute_url }}); background-position: {{ include.style.position | default: 'center' }} -5em; background-size: {{ include.style.size | default: '100% auto' }};"
3
+ {% if include.style.class %}class="{{ include.style.class | default: '' }}"{% endif %}
4
+ {% if include.style.image %}style="
5
+ background-image: url({{ 'assets/css/images/split.curve.svg' | absolute_url }}), url({{ include.style.image.url | absolute_url }});
6
+ background-position: {{ include.style.image.position | default: 'right' }} -5em, {{ include.style.image.position | default: 'right' }} -5em;
7
+ background-size: {{ include.style.image.size | default: 'auto 100vh' }}, {{ include.style.image.size | default: 'auto 100vh' }};"
6
8
  {% endif %}>
7
9
  <div class="content">
8
10
  <header>
@@ -11,7 +13,7 @@ style="background-image: url({{ include.style.image | absolute_url }}); backgrou
11
13
  </header>
12
14
  {% if include.description %}<p>{{ include.description }}</p>{% endif %}
13
15
  <ul class="actions">
14
- <li><a href="{{ include.button.url | default: '#' }}" class="button primary big scrolly">{{ include.button.label | default: 'Ask for advice!' }}</a></li>
16
+ <li><a href="{{ include.button.url | default: '#' }}" class="button primary big">{{ include.button.label | default: 'Ask for advice!' }}</a></li>
15
17
  </ul>
16
18
  </div>
17
19
  </section>
data/_includes/head.html CHANGED
@@ -9,6 +9,7 @@
9
9
  <link rel="stylesheet" href="{{ 'assets/css/small.css' | absolute_url }}" media="screen and (max-width:736px)" />
10
10
  <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:400,600,400italic,600italic|Roboto+Slab:400,700&display=swap" type="text/css" media="all">
11
11
  <link rel="stylesheet" href="{{ 'assets/css/fontawesome-all.min.css' | absolute_url }}" type="text/css" media="all">
12
+ <link rel="stylesheet" href="{{ 'assets/css/font-certifications.min.css' | absolute_url}}" type="text/css" media="all">
12
13
  <link rel="stylesheet" href="{{ 'assets/css/cookieconsent.min.css' | absolute_url }}" type="text/css" media="all">
13
14
  {%- if include.stylesheets -%}
14
15
  {%- for file in include.stylesheets -%}
@@ -1,8 +1,10 @@
1
1
  <!-- Header -->
2
2
  <header id="header"
3
- {%- if include.style -%}
4
- class="{{ include.style.class | default: '' }}"
5
- style="background-image: url({{ include.style.image | absolute_url }}); background-position: {{ include.style.position | default: 'center' }} top; background-size: {{ include.style.size | default: '100% auto' }};"
3
+ {% if include.style.class %}class="{{ include.style.class | default: '' }}"{% endif %}
4
+ {% if include.style.image %}style="
5
+ background-image: url({{ 'assets/css/images/split.curve.svg' | absolute_url }}), url({{ include.style.image.url | absolute_url }});
6
+ background-position: {{ include.style.image.position | default: 'right' }} top, {{ include.style.image.position | default: 'right' }} top;
7
+ background-size: {{ include.style.image.size | default: 'auto 100vh' }}, {{ include.style.image.size | default: 'auto 100vh' }};"
6
8
  {% endif %}>
7
9
  <a href="{{ '' | absolute_url }}" class="logo">
8
10
  <span class="title">
@@ -10,5 +12,4 @@ style="background-image: url({{ include.style.image | absolute_url }}); backgrou
10
12
  </span>
11
13
  <span class="subtitle"> - {{ include.subtitle }}</span>
12
14
  </a>
13
- {% include language.html %}
14
15
  </header>
@@ -8,7 +8,7 @@
8
8
  <ul>
9
9
  {%- for subitem in item.menu -%}
10
10
  <li {% if subitem.url == page.url %} class="current" {% endif %}>
11
- <a href="{{ subitem.url | absolute_url }}" class="scrolly">{{ subitem.title }}</a>
11
+ <a href="{{ subitem.url | absolute_url }}">{{ subitem.title }}</a>
12
12
  </li>
13
13
  {%- endfor -%}
14
14
  </ul>
@@ -1,6 +1,5 @@
1
1
  <!-- Scripts -->
2
2
  <script src="{{ 'assets/js/jquery.min.js' | absolute_url }}" type="text/javascript" defer ></script>
3
- <script src="{{ 'assets/js/jquery.scrolly.min.js' | absolute_url }}" type="text/javascript" defer ></script>
4
3
  <script src="{{ 'assets/js/browser.min.js' | absolute_url }}" type="text/javascript" defer ></script>
5
4
  <script src="{{ 'assets/js/breakpoints.min.js' | absolute_url }}" type="text/javascript" defer ></script>
6
5
  <script src="{{ 'assets/js/lazy-loading.min.js' | absolute_url }}" type="text/javascript" defer ></script>
@@ -7,6 +7,8 @@
7
7
  {% include navigation.html menu=include.menu %}
8
8
 
9
9
  {% include social.html %}
10
+
11
+ {% include language.html %}
10
12
 
11
13
  </div>
12
14
 
@@ -35,4 +35,4 @@
35
35
  <li><a href="{{ site.linkedin.url }}" class="icon brands fa-linkedin" target="_blank"><span class="label">LinkedIn</span></a></li>
36
36
  {%- endif -%}
37
37
  </ul>
38
- </div>
38
+ </div>
@@ -18,7 +18,6 @@
18
18
  </article>
19
19
  {%- endfor -%}
20
20
  </div>
21
+ <p class="rss-subscribe">subscribe <a href="{{ '/feed.xml' | absolute_url }}">via RSS</a></p>
21
22
  </section>
22
-
23
- <p class="rss-subscribe">subscribe <a href="{{ '/feed.xml' | absolute_url }}">via RSS</a></p>
24
23
  {%- endif -%}
data/_sass/large.scss CHANGED
@@ -29,6 +29,7 @@
29
29
  @import 'large/components/list';
30
30
  @import 'large/components/actions';
31
31
  @import 'large/components/icons';
32
+ @import 'large/components/language';
32
33
  @import 'large/components/contact';
33
34
  @import 'large/components/pagination';
34
35
  @import 'large/components/table';
@@ -1,15 +0,0 @@
1
- body, input, select, textarea {
2
- @include breakpoint('<=xlarge') {
3
- font-size: 11pt;
4
- }
5
-
6
- @include breakpoint('<=large') {
7
- font-size: 10pt;
8
- }
9
- }
10
-
11
- @include breakpoint('<=xlarge') {
12
- h1 {
13
- font-size: 3.5em;
14
- }
15
- }
File without changes
@@ -1,23 +0,0 @@
1
- #main {
2
- > .inner {
3
- @include breakpoint('<=xlarge') {
4
- > section {
5
- @include padding(5em, 5em);
6
- }
7
-
8
- #header {
9
- padding: 2em 5em 1em 5em;
10
- }
11
- }
12
-
13
- @include breakpoint('<=large') {
14
- > section {
15
- @include padding(4em, 4em);
16
- }
17
-
18
- #header {
19
- padding: 2em 4em 1em 4em;
20
- }
21
- }
22
- }
23
- }
data/_sass/main.scss CHANGED
@@ -23,6 +23,7 @@
23
23
  @import 'main/components/list';
24
24
  @import 'main/components/actions';
25
25
  @import 'main/components/icons';
26
+ @import 'main/components/language';
26
27
  @import 'main/components/contact';
27
28
  @import 'main/components/pagination';
28
29
  @import 'main/components/table';
@@ -12,6 +12,7 @@ body {
12
12
  // Based on css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
13
13
  html {
14
14
  box-sizing: border-box;
15
+ scroll-behavior: smooth;
15
16
  }
16
17
 
17
18
  *, *:before, *:after {
@@ -15,46 +15,6 @@
15
15
  position: relative;
16
16
  width: 50%;
17
17
 
18
- .ensem {
19
- background-image: url('images/ensem.svg');
20
- }
21
-
22
- .cie {
23
- background-image: url('images/cie.svg');
24
- }
25
-
26
- .cnefic {
27
- background-image: url('images/cnefic.svg');
28
- }
29
-
30
- .eisti {
31
- background-image: url('images/eisti.svg');
32
- }
33
-
34
- .ieam {
35
- background-image: url('images/ieam.svg');
36
- }
37
-
38
- .ifag {
39
- background-image: url('images/ifag.svg');
40
- }
41
-
42
- .ifg {
43
- background-image: url('images/ifg.svg');
44
- }
45
-
46
- .marine {
47
- background-image: url('images/marine.svg');
48
- }
49
-
50
- .ub {
51
- background-image: url('images/ub.svg');
52
- }
53
-
54
- .uca {
55
- background-image: url('images/uca.svg');
56
- }
57
-
58
18
  .icon {
59
19
  @include vendor('flex-grow', '0');
60
20
  @include vendor('flex-shrink', '0');
@@ -19,6 +19,23 @@
19
19
  }
20
20
  }
21
21
 
22
+ &.certs {
23
+ speak: never;
24
+ font-style: normal;
25
+ font-weight: normal;
26
+ font-variant: normal;
27
+ text-transform: none;
28
+ line-height: 1;
29
+
30
+ /* Better Font Rendering =========== */
31
+ -webkit-font-smoothing: antialiased;
32
+ -moz-osx-font-smoothing: grayscale;
33
+
34
+ &:before {
35
+ font-family: 'Certifications' !important;
36
+ }
37
+ }
38
+
22
39
  &.brands {
23
40
  &:before {
24
41
  font-family: 'Font Awesome 5 Brands';
@@ -0,0 +1,33 @@
1
+ .language {
2
+ position: absolute;
3
+ padding: 0 1em 0 0;
4
+ bottom: 0;
5
+ right: 0;
6
+ text-align: right;
7
+
8
+ li {
9
+ display: inline-block;
10
+ margin: 0;
11
+ padding: 0 1em 0 0;
12
+
13
+ &:last-child {
14
+ padding-right: 0;
15
+ }
16
+
17
+ .icon {
18
+ color: inherit;
19
+
20
+ &:before {
21
+ font-size: 1.25em;
22
+ }
23
+ }
24
+ }
25
+
26
+ a {
27
+ border: none;
28
+ }
29
+
30
+ .en:lang(en), .fr:lang(fr), .de:lang(de){
31
+ font-weight: bold;
32
+ }
33
+ }
@@ -22,39 +22,6 @@
22
22
 
23
23
  .icons {
24
24
  }
25
-
26
- .language {
27
- position: absolute;
28
- padding: 0 1em 0 0;
29
- right: 0;
30
- text-align: right;
31
-
32
- li {
33
- display: inline-block;
34
- margin: 0;
35
- padding: 0 1em 0 0;
36
-
37
- &:last-child {
38
- padding-right: 0;
39
- }
40
-
41
- .icon {
42
- color: inherit;
43
-
44
- &:before {
45
- font-size: 1.25em;
46
- }
47
- }
48
- }
49
-
50
- a {
51
- border: none;
52
- }
53
-
54
- .en:lang(en), .fr:lang(fr), .de:lang(de){
55
- font-weight: bold;
56
- }
57
- }
58
25
  }
59
26
 
60
27
  /* Inverted */
@@ -10,8 +10,8 @@
10
10
  max-width: 110em;
11
11
 
12
12
  > section {
13
- @include padding(6em, 6em);
14
13
  border-top: solid 2px _palette(border);
14
+ padding: 1em 1em 1em 4em;
15
15
 
16
16
  &:first-of-type {
17
17
  border-top: 0 !important;
@@ -19,7 +19,7 @@
19
19
  }
20
20
 
21
21
  #header {
22
- padding: 2em 6em 1em 6em;
22
+ padding: 2em 4em 1em 4em;
23
23
  margin: 0;
24
24
  }
25
25
  }
@@ -142,7 +142,7 @@
142
142
  &#sidebar-logo-button svg {
143
143
  position: absolute;
144
144
  top: 20%;
145
- left: 20%;
145
+ left: 16%;
146
146
  width: 40%;
147
147
  height: 40%;
148
148
  font-size: 1.5rem;
@@ -219,15 +219,15 @@
219
219
  color: _palette(accent);
220
220
 
221
221
  &:hover {
222
- color: _palette(accent);
223
- }
222
+ color: _palette(accent-cp);
224
223
 
225
- &#sidebar-logo-button svg {
226
- fill: _palette(accent);
227
- stroke: _palette(accent);
224
+ &#sidebar-logo-button svg {
225
+ fill: _palette(accent-cp);
226
+ stroke: _palette(accent-cp);
227
+ }
228
228
  }
229
229
 
230
- &#sidebar-logo-button:hover svg {
230
+ &#sidebar-logo-button svg {
231
231
  fill: _palette(accent);
232
232
  stroke: _palette(accent);
233
233
  }
data/_sass/medium.scss CHANGED
@@ -28,6 +28,7 @@
28
28
  @import 'medium/components/list';
29
29
  @import 'medium/components/actions';
30
30
  @import 'medium/components/icons';
31
+ @import 'medium/components/language';
31
32
  @import 'medium/components/contact';
32
33
  @import 'medium/components/pagination';
33
34
  @import 'medium/components/table';
@@ -1,5 +0,0 @@
1
- @include breakpoint('<=medium') {
2
- h1 {
3
- font-size: 3.25em;
4
- }
5
- }
File without changes
data/_sass/small.scss CHANGED
@@ -30,6 +30,7 @@
30
30
  @import 'small/components/list';
31
31
  @import 'small/components/actions';
32
32
  @import 'small/components/icons';
33
+ @import 'small/components/language';
33
34
  @import 'small/components/contact';
34
35
  @import 'small/components/pagination';
35
36
  @import 'small/components/table';
File without changes
@@ -1,16 +0,0 @@
1
- /* Main */
2
-
3
- #main {
4
- > .inner {
5
- @include breakpoint('<=small') {
6
- section {
7
- padding: 1em 1em 1em 4em;
8
- }
9
- }
10
-
11
- #header {
12
- padding: 2em 4em 1em 4em;
13
- margin: 0;
14
- }
15
- }
16
- }