jekyll-theme-centos 0.1.17 → 0.1.22

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: 39c19f5cdee9acb4baf254e23b15ebce73396b51847d81d4525e685cfaccb702
4
- data.tar.gz: 29770cb7f7bba94b57c7c27396c9475f84b043fb5820f78b1f53e3a406148c70
3
+ metadata.gz: 567b0f0037361767b100925985ceb5fd3d93090613c4cffee75c8b560103d5b0
4
+ data.tar.gz: 5b941acb8d34ebda09e8da0ba0acee309a5be11941560b0cda782ca1a6e2d4e7
5
5
  SHA512:
6
- metadata.gz: cc1740588cec286e8a8e82615565c7ea5cb66591b56c38d06bf4ce9578064cea0ce2e33d7b8763339c30e4eb4c2b68384d2a091ba89014c9ecb350cb7e4cf939
7
- data.tar.gz: 55210039254cb03c41f4d435023f4737a17a78495b145d00dd3ac1c1e526052045870e67bdff667ccfd2c2b0ce4988d47d65cc939b0eb1682038d7b557e1d70a
6
+ metadata.gz: 2f833ff716de2ab1d63a63a6050e48b130cb3c05e2603dea313b02832a0518c1243446750324213bc49de5c84d4b1c49030bd6b6fb37b65b67378dde64b7fec2
7
+ data.tar.gz: 1725794e6ab2ed1c060d2e45fc46a5e25154d4620f0141730897184793370891d0ccfa7117c214999e51a98588d3776d666513bbe20bdbbde9592e5f3b486e3e
@@ -2,6 +2,7 @@
2
2
  <div class="container">
3
3
  <div class="row">
4
4
 
5
+ {% if site.footer.columns %}
5
6
  {% for column in site.footer.columns %}
6
7
  {% assign links = site.navbar | where: "name", column %}
7
8
  {% for section in links %}
@@ -15,6 +16,7 @@
15
16
  </section>
16
17
  {% endfor %}
17
18
  {% endfor %}
19
+ {% endif %}
18
20
 
19
21
  <section class="project">
20
22
  <h4>{{ site.title }}</h4>
@@ -5,10 +5,14 @@
5
5
  <h1>{{ site.title }}</h1>
6
6
  </header>
7
7
  <p class="lead">{{ site.description }}</p>
8
+ {% if site.header.preamble %}
8
9
  <p class="lead">{{ site.header.preamble }}</p>
10
+ {% endif %}
11
+ {% if site.header.worklines %}
9
12
  {% for item in site.header.worklines %}
10
13
  <a class="btn btn-light btn-lg" role="button" href="{{ item.link }}"><i class="{{ item.icon }}"></i> <strong>{{ item.name }}</strong></a>
11
14
  {% endfor %}
15
+ {% endif %}
12
16
  </div>
13
17
  </div>
14
18
  </div>
@@ -3,12 +3,16 @@
3
3
  <h2><i class="fas fa-calendar-alt"></i> News and events</h2>
4
4
  </header>
5
5
 
6
- <div class="card">
7
- <ul class="card-body">
8
- {% for i in site.posts limit:5 %}
9
- <a href="{{ i.url }}"><li class="card-title">{{ i.title }}</li></a>
10
- {% endfor %}
11
- </ul>
6
+ {% assign news = site.posts | where: "category", "news" %}
7
+ {% assign events = site.posts | where: "category", "events" %}
8
+ {% assign news_and_events = news | concat: events %}
9
+ {% for i in news_and_events limit:3 %}
10
+ <div class="row">
11
+ <div class="col">
12
+ <h4>{{ i.title }}</h4>
13
+ {{ i.content }}
14
+ </div>
12
15
  </div>
16
+ {% endfor %}
13
17
 
14
18
  </section>
@@ -1,7 +1,7 @@
1
1
  <table>
2
2
  <thead>
3
3
  <tr>
4
- <th><i class="fas fa-compact-disc"></i> ISO</th>
4
+ <th><i class="fas fa-microchip"></i> Architectures</th>
5
5
  <th><i class="fas fa-cubes"></i> Packages</th>
6
6
  <th><i class="fas fa-plus-circle"></i> Others</th>
7
7
  </tr>
@@ -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>
@@ -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-dark"><i class="fas fa-rss"></i> Subscribe</button></a>
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>
@@ -3,3 +3,4 @@
3
3
  @import "mixins/_page-card";
4
4
  @import "mixins/_page-toc";
5
5
  @import "mixins/_link-dark";
6
+ @import "mixins/_before-angle-right";
@@ -8,3 +8,7 @@
8
8
  margin-bottom: 0;
9
9
  }
10
10
  }
11
+
12
+ .nav-tabs {
13
+ margin-bottom: 0 !important;
14
+ }
@@ -78,35 +78,20 @@
78
78
  }
79
79
 
80
80
  .news {
81
- @extend .col-md-8, .col-lg-8;
82
- .card {
83
- border: none;
84
- margin-left: 15px;
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
- .card-title {
97
- list-style: none;
98
- &:before {
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-md-12, .col-lg-12;
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-md-12, .col-lg-12;
103
+ @extend .col-lg-12;
119
104
  @include page-lists;
120
105
  }
121
106
 
122
107
  .blog {
123
- @extend .col-md-12, .col-lg-12;
108
+ @extend .col-lg-12;
124
109
 
125
110
  .card {
126
- @extend .col-md-6;
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
- &:before {
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-md-4, .col-lg-4;
164
+ @extend .col-lg-4;
186
165
  font-size: small;
187
- @include media-breakpoint-up(md) {
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(md) {
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-md-8, .col-lg-8;
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-md-6;
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-md-4;
209
+ @extend .col-lg-4;
231
210
  }
232
211
  .card {
233
212
  margin: 1em;
@@ -0,0 +1,9 @@
1
+ @mixin before-angle-right {
2
+ &:before {
3
+ @extend .fas;
4
+ color: $nord-color-4;
5
+ margin-right: 0.5em;
6
+ margin-left: -1em;
7
+ content: fa-content($fa-var-angle-right);
8
+ }
9
+ }
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.17
4
+ version: 0.1.22
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-20 00:00:00.000000000 Z
11
+ date: 2020-12-21 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