jekyll-theme-centos 0.1.18 → 0.1.23

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cd4de3f9d5e891cc8f14bbd7407a58e23733ff2d3dd54529aeab2df3bbe35283
4
- data.tar.gz: 9e071c4e347e5caa1bfc1eef37bf07439d414fb8c91ffae195fcf93ec225380d
3
+ metadata.gz: b9b73457952a178a8f22bde5bf32e05a2b76a2b38734e48ecb813c995283eae8
4
+ data.tar.gz: 10df7731a154be9883654d3cd338b4558d58cabe3bdd5ea456d376a01ced87d9
5
5
  SHA512:
6
- metadata.gz: 5ba00261f0a3959a8d35380c362f8995744585ff6bd8ecfdfadaaa7300c57855105d8055a561f5b0ca93124ad9571804b4d065f7035baf484d63f340fec0e7a6
7
- data.tar.gz: a2481a62b9efec9341666c3707c051e251eeb7bf276a32dcab6779317250ce0f921fa3d19cb7bac65fbf08b42b665c26161b312fee7407521dba984350589846
6
+ metadata.gz: a973f4391dbe7a9d080707f644f2fabe1973dcd2e576db53da0b7ad6067dddcda3ec296bc0a0dd472dfaf4d712cdea1dc8282abf0d62c9d34aa61b73ea4c16fe
7
+ data.tar.gz: 80e4b66aedc3bda0d86799344ba7d30d3e9def576b0badda0f554fdac22ea5662437313494df34dedfd6b5883860897aa7d4648ff8f0b3fae78109bdcf707304
@@ -3,12 +3,14 @@
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 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>
@@ -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.18
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-20 00:00:00.000000000 Z
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