jekyll-theme-consulting 0.8.6 → 0.8.11
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 +21 -9
- 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: e462e22a0106fd5c370fa28b9106e29b9478881bb481e8c3318c5a32cf0a4782
|
4
|
+
data.tar.gz: 962ea17bbe106187d101d94fc98b434fc6630bf7963dd7bb598c16c2c4a60356
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a1c3652343f3c4f577217a20a8465cd91a3b7f9ad855ac1b94498b503000d2edae496bcce926b19143c29cfb9d89db03f2c139d081f24bc9135d0de88d932443
|
7
|
+
data.tar.gz: 1233e9f48efc716b8281fa334582775a84086d2477eea892d36f00d4ece2b49bd5d6064cea3ad5ccce57340ad042cf2097dc41ced921537518ad567275657030
|
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
|
+
<div class="title">
|
5
|
+
<strong>{{ include.title }}</strong>
|
6
|
+
</div>
|
7
|
+
<div class="subtitle"> - {{ include.subtitle }}</div>
|
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 {
|
@@ -50,7 +50,7 @@
|
|
50
50
|
margin: 0;
|
51
51
|
display: table-cell;
|
52
52
|
text-align: center;
|
53
|
-
font-size:
|
53
|
+
font-size: 1rem;
|
54
54
|
}
|
55
55
|
}
|
56
56
|
|
@@ -74,10 +74,10 @@
|
|
74
74
|
h3 {
|
75
75
|
margin: 0;
|
76
76
|
display: table-cell;
|
77
|
-
vertical-align:
|
77
|
+
vertical-align: middle;
|
78
78
|
text-align: center;
|
79
79
|
text-transform: uppercase;
|
80
|
-
font-size:
|
80
|
+
font-size: 2rem;
|
81
81
|
}
|
82
82
|
}
|
83
83
|
}
|
@@ -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.11
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Moodule
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
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
|