jekyll-theme-consulting 0.8.7 → 0.8.12
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/header.html +4 -1
- data/_includes/post.html +18 -0
- data/_sass/main/components/_facts.scss +18 -6
- data/_sass/small/layout/_header.scss +3 -0
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 66c3be1c568de125bc1f773805b0ceec33e5fc9cda3fc496a0fad63f176bcaa0
|
4
|
+
data.tar.gz: c3598f853d880da46c0025458d9a4110479f497eb282dad6504bb53bfcfc6cad
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 340b3d77358499f655d5dfe7206d09d4866c6b1598a8a7b2a4fd8048264f48f965874004a4ea46da82c697e10e4d4910aa880afc95ea014514d70b15e6c2df64
|
7
|
+
data.tar.gz: 2e96015ad0a6b93b77a7252aa40297045f0a9b0d8c8080dbca2eb61517f965c1189d25cd58c575afe725738eaf5a9f93b42b91cde3e471a1d309baea97f17920
|
data/_includes/header.html
CHANGED
@@ -1,7 +1,10 @@
|
|
1
1
|
<!-- Header -->
|
2
2
|
<header id="header" {% if include.style %}class="{{ include.style.class | default: '' }}" style="background-image: url({{ include.style.image | absolute_url }});"{% endif %}>
|
3
3
|
<a href="{{ '' | absolute_url }}" class="logo">
|
4
|
-
<
|
4
|
+
<span class="title">
|
5
|
+
<strong>{{ include.title }}</strong>
|
6
|
+
</span>
|
7
|
+
<span class="subtitle"> - {{ include.subtitle }}</span>
|
5
8
|
</a>
|
6
9
|
{% include language.html %}
|
7
10
|
</header>
|
data/_includes/post.html
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
<article>
|
2
|
+
{%- if include.image-src -%}
|
3
|
+
<a href="{{ include.target-url | absolute_url }}" class="image" >
|
4
|
+
<img class="lazy-loading" src="{{ include.image-src | absolute_url }}" data-src="{{ include.image-placeholder-src | default: image-src | absolute_url }}" alt="{{ include.image-alt-text }}">
|
5
|
+
</a>
|
6
|
+
{%- endif -%}
|
7
|
+
<h3>{{ include.title }}</h3>
|
8
|
+
<p>{{ include.content }}</p>
|
9
|
+
{%- if include.target-url -%}
|
10
|
+
<ul class="actions">
|
11
|
+
<li>
|
12
|
+
<a href="{{ include.target-url | absolute_url }}" class="button">
|
13
|
+
{% if page.lang=="en" %}More{% elsif page.lang=="fr" %}Plus{% endif %}
|
14
|
+
</a>
|
15
|
+
</li>
|
16
|
+
</ul>
|
17
|
+
{%- endif -%}
|
18
|
+
</article>
|
@@ -37,7 +37,7 @@
|
|
37
37
|
height: 20%;
|
38
38
|
text-align: center;
|
39
39
|
font-size: 3rem;
|
40
|
-
color: _palette(accent);
|
40
|
+
color: _palette(accent) !important;
|
41
41
|
}
|
42
42
|
|
43
43
|
.fact-intro, .fact-outro {
|
@@ -93,19 +93,31 @@
|
|
93
93
|
|
94
94
|
.on.fact-intro {
|
95
95
|
display: table;
|
96
|
+
|
97
|
+
p {
|
98
|
+
color: #000000 !important;
|
99
|
+
}
|
96
100
|
}
|
97
101
|
|
98
102
|
.on.fact {
|
99
103
|
display: table;
|
104
|
+
|
105
|
+
h3 {
|
106
|
+
color: #000000 !important;
|
107
|
+
}
|
100
108
|
}
|
101
109
|
|
102
110
|
.on.fact-outro {
|
103
111
|
display: table;
|
112
|
+
|
113
|
+
p {
|
114
|
+
color: #000000 !important;
|
115
|
+
}
|
104
116
|
}
|
105
117
|
}
|
106
118
|
|
107
119
|
article:hover {
|
108
|
-
background-color: _palette(accent);
|
120
|
+
background-color: _palette(accent) !important;
|
109
121
|
|
110
122
|
.on {
|
111
123
|
display: none;
|
@@ -113,14 +125,14 @@
|
|
113
125
|
|
114
126
|
.off.icon {
|
115
127
|
display: block;
|
116
|
-
color: _palette(accent-cp);
|
128
|
+
color: _palette(accent-cp) !important;
|
117
129
|
}
|
118
130
|
|
119
131
|
.off.fact-intro {
|
120
132
|
display: table;
|
121
133
|
|
122
134
|
p {
|
123
|
-
color: #ffffff;
|
135
|
+
color: #ffffff !important;
|
124
136
|
}
|
125
137
|
}
|
126
138
|
|
@@ -128,7 +140,7 @@
|
|
128
140
|
display: table;
|
129
141
|
|
130
142
|
h3 {
|
131
|
-
color: #ffffff;
|
143
|
+
color: #ffffff !important;
|
132
144
|
}
|
133
145
|
}
|
134
146
|
|
@@ -136,7 +148,7 @@
|
|
136
148
|
display: table;
|
137
149
|
|
138
150
|
p {
|
139
|
-
color: #ffffff;
|
151
|
+
color: #ffffff !important;
|
140
152
|
}
|
141
153
|
}
|
142
154
|
}
|
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
|
+
version: 0.8.12
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Moodule
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-07-
|
11
|
+
date: 2020-07-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -86,6 +86,7 @@ files:
|
|
86
86
|
- _includes/language.html
|
87
87
|
- _includes/logo.html
|
88
88
|
- _includes/navigation.html
|
89
|
+
- _includes/post.html
|
89
90
|
- _includes/scripts.html
|
90
91
|
- _includes/search.html
|
91
92
|
- _includes/sidebar.html
|