jekyll-theme-centos 0.1.18 → 0.1.23
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/home/news.html +8 -6
- data/_includes/page/download-header.html +1 -1
- data/_includes/page/toc.html +1 -1
- data/_layouts/blog.html +1 -1
- data/_sass/centos/_mixins.scss +1 -0
- data/_sass/centos/_nav.scss +4 -0
- data/_sass/centos/_page.scss +19 -40
- data/_sass/centos/mixins/_before-angle-right.scss +9 -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: b9b73457952a178a8f22bde5bf32e05a2b76a2b38734e48ecb813c995283eae8
|
4
|
+
data.tar.gz: 10df7731a154be9883654d3cd338b4558d58cabe3bdd5ea456d376a01ced87d9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a973f4391dbe7a9d080707f644f2fabe1973dcd2e576db53da0b7ad6067dddcda3ec296bc0a0dd472dfaf4d712cdea1dc8282abf0d62c9d34aa61b73ea4c16fe
|
7
|
+
data.tar.gz: 80e4b66aedc3bda0d86799344ba7d30d3e9def576b0badda0f554fdac22ea5662437313494df34dedfd6b5883860897aa7d4648ff8f0b3fae78109bdcf707304
|
data/_includes/home/news.html
CHANGED
@@ -3,12 +3,14 @@
|
|
3
3
|
<h2><i class="fas fa-calendar-alt"></i> News and events</h2>
|
4
4
|
</header>
|
5
5
|
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
6
|
+
{% assign blog_posts = site.posts | where: "category", "blog" %}
|
7
|
+
{% for i in blog_posts limit:3 %}
|
8
|
+
<div class="row">
|
9
|
+
<div class="col">
|
10
|
+
<h4>{{ i.title }}</h4>
|
11
|
+
{{ i.content }}
|
12
|
+
</div>
|
12
13
|
</div>
|
14
|
+
{% endfor %}
|
13
15
|
|
14
16
|
</section>
|
data/_includes/page/toc.html
CHANGED
@@ -95,10 +95,10 @@
|
|
95
95
|
{% endif %}{% endcapture %}
|
96
96
|
|
97
97
|
{% if my_toc != "" %}
|
98
|
-
<section class="toc">
|
99
98
|
<header>
|
100
99
|
<h6>Contents:</h6>
|
101
100
|
</header>
|
101
|
+
<section class="toc">
|
102
102
|
|
103
103
|
{% assign tocWorkspace = '' %}{{ my_toc | markdownify | strip }}
|
104
104
|
</section>
|
data/_layouts/blog.html
CHANGED
@@ -13,7 +13,7 @@ layout: default
|
|
13
13
|
</div>
|
14
14
|
|
15
15
|
<div class="col text-right">
|
16
|
-
<a href="{{ "/feed.xml" | relative_url }}"><button type="button" class="btn btn-
|
16
|
+
<a href="{{ "/feed.xml" | relative_url }}"><button type="button" class="btn btn-light"><i class="fas fa-rss"></i></button></a>
|
17
17
|
</div>
|
18
18
|
|
19
19
|
</div>
|
data/_sass/centos/_mixins.scss
CHANGED
data/_sass/centos/_nav.scss
CHANGED
data/_sass/centos/_page.scss
CHANGED
@@ -78,35 +78,20 @@
|
|
78
78
|
}
|
79
79
|
|
80
80
|
.news {
|
81
|
-
@extend .col
|
82
|
-
.
|
83
|
-
|
84
|
-
|
85
|
-
&-title {
|
86
|
-
font-size: $h5-font-size;
|
87
|
-
}
|
88
|
-
&-body {
|
89
|
-
list-style: none;
|
90
|
-
padding: 0;
|
91
|
-
li {
|
92
|
-
padding: 0.5em;
|
93
|
-
}
|
94
|
-
}
|
81
|
+
@extend .col;
|
82
|
+
.row {
|
83
|
+
@extend .row;
|
84
|
+
padding-left: 24px;
|
95
85
|
}
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
@extend .fas;
|
100
|
-
color: $nord-color-4;
|
101
|
-
margin-right: 0.5em;
|
102
|
-
margin-left: -1em;
|
103
|
-
content: fa-content($fa-var-angle-right);
|
104
|
-
}
|
86
|
+
h4 {
|
87
|
+
@include before-angle-right;
|
88
|
+
font-weight: normal;
|
105
89
|
}
|
90
|
+
|
106
91
|
}
|
107
92
|
|
108
93
|
.around {
|
109
|
-
@extend .col-
|
94
|
+
@extend .col-lg-12;
|
110
95
|
margin-top: 1em;
|
111
96
|
}
|
112
97
|
|
@@ -115,15 +100,15 @@
|
|
115
100
|
}
|
116
101
|
|
117
102
|
.article {
|
118
|
-
@extend .col-
|
103
|
+
@extend .col-lg-12;
|
119
104
|
@include page-lists;
|
120
105
|
}
|
121
106
|
|
122
107
|
.blog {
|
123
|
-
@extend .col-
|
108
|
+
@extend .col-lg-12;
|
124
109
|
|
125
110
|
.card {
|
126
|
-
@extend .col-
|
111
|
+
@extend .col-lg-6;
|
127
112
|
@include page-card;
|
128
113
|
a {
|
129
114
|
display: block;
|
@@ -160,13 +145,7 @@
|
|
160
145
|
list-style: none;
|
161
146
|
margin-top: 1em;
|
162
147
|
margin-left: 1em;
|
163
|
-
|
164
|
-
@extend .fas;
|
165
|
-
color: $nord-color-4;
|
166
|
-
margin-right: 0.5em;
|
167
|
-
margin-left: -1em;
|
168
|
-
content: fa-content($fa-var-angle-right);
|
169
|
-
}
|
148
|
+
@include before-angle-right;
|
170
149
|
}
|
171
150
|
}
|
172
151
|
|
@@ -182,9 +161,9 @@
|
|
182
161
|
|
183
162
|
.aside-navigation {
|
184
163
|
@extend .container;
|
185
|
-
@extend .col-
|
164
|
+
@extend .col-lg-4;
|
186
165
|
font-size: small;
|
187
|
-
@include media-breakpoint-up(
|
166
|
+
@include media-breakpoint-up(lg) {
|
188
167
|
align-self: start;
|
189
168
|
position: sticky;
|
190
169
|
top: 90px;
|
@@ -192,7 +171,7 @@
|
|
192
171
|
|
193
172
|
.toc {
|
194
173
|
@include page-toc;
|
195
|
-
@include media-breakpoint-up(
|
174
|
+
@include media-breakpoint-up(lg) {
|
196
175
|
display: flex;
|
197
176
|
flex-direction: column;
|
198
177
|
max-height: 75vh;
|
@@ -202,7 +181,7 @@
|
|
202
181
|
}
|
203
182
|
|
204
183
|
.aside-article {
|
205
|
-
@extend .col-
|
184
|
+
@extend .col-lg-8;
|
206
185
|
@include page-lists;
|
207
186
|
}
|
208
187
|
|
@@ -210,7 +189,7 @@
|
|
210
189
|
@extend .container;
|
211
190
|
|
212
191
|
.card {
|
213
|
-
@extend .col-
|
192
|
+
@extend .col-lg-6;
|
214
193
|
@include page-card;
|
215
194
|
.tab-content {
|
216
195
|
table {
|
@@ -227,7 +206,7 @@
|
|
227
206
|
|
228
207
|
.sponsors {
|
229
208
|
&.carousel {
|
230
|
-
@extend .col-
|
209
|
+
@extend .col-lg-4;
|
231
210
|
}
|
232
211
|
.card {
|
233
212
|
margin: 1em;
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-centos
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.23
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alain Reguera Delgado
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-12-
|
11
|
+
date: 2020-12-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -212,6 +212,7 @@ files:
|
|
212
212
|
- _sass/centos/_variables.scss
|
213
213
|
- _sass/centos/centos.scss
|
214
214
|
- _sass/centos/fonts/_montserrat.scss
|
215
|
+
- _sass/centos/mixins/_before-angle-right.scss
|
215
216
|
- _sass/centos/mixins/_link-dark.scss
|
216
217
|
- _sass/centos/mixins/_page-card.scss
|
217
218
|
- _sass/centos/mixins/_page-heading.scss
|