jekyll-theme-centos 0.6.9 → 0.6.14

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: 809a837e958bfdf34a8f1df1bc8195d52899887c65df4d54cd6d116933fca459
4
- data.tar.gz: 8a2083a2c844be519d6c38a1e5cb808d8414f0ed1cee81c24f8d2731ba6979ab
3
+ metadata.gz: 8868454434356998d279e5fc880ac808d4e127b3519e4a32cdfe34b941b8e332
4
+ data.tar.gz: e86ef3e1f51aae81445610d25d2e85cb8422d5783a01b61f84d94599a75a4f01
5
5
  SHA512:
6
- metadata.gz: 0db9eca9b04ff27146902819e7bc0496ab602cc60444e4eefc9f17e039159fc0f7d07608a55fc21836428769f9d9fb9d9aca0c21666dbacd4b676d9b53c90036
7
- data.tar.gz: a9af68f5e45082749732fc6ad55c0a505bb5cd1b54ac19a88d5ada32349170bc2ae6464b6138e8f1d4f7a82b49d224ed202d6c7006be4f4ead8748619a5a26aa
6
+ metadata.gz: 44943eab3defb3b9d53afb2609901240c91d4a2d89969ec60ea13492569fdbdc91a760ec6782214f740b8ca7d866ad0210052aa8441c744cc4a370b12c357ccf
7
+ data.tar.gz: b4529514c33736687c1b31e7d8f4096e958d7f142938940640864c8362d3c86682ac1592ae935ec4ffb4adaf98171fe162910ad27a84ac2df53105700e180555
@@ -4,7 +4,7 @@
4
4
 
5
5
  <ul>
6
6
  {% assign blog_posts = site.posts | where: "category", "news-and-events" %}
7
- {% for i in blog_posts limit:4 %}
7
+ {% for i in blog_posts limit:5 %}
8
8
  {%- assign date_format = site.date_format | default: "%b %-d, %Y" -%}
9
9
  <li><a href="{{ i.url }}">{{ i.title }}</a><br>{{ i.date | date: date_format }} &mdash; {{ i.excerpt | strip_html }}</li>
10
10
  {% endfor %}
@@ -4,7 +4,7 @@
4
4
 
5
5
  <ul>
6
6
  {% assign entries = site.data.centos.planet %}
7
- {% for i in entries limit:8 %}
7
+ {% for i in entries limit:5 %}
8
8
  {%- assign date_format = site.date_format | default: "%b %-d, %Y" -%}
9
9
  <li><a href="{{ i.link }}">{{ i.title }}</a><br>{{ i.published | date: date_format }} &mdash; {{ i.summary | strip_html | slice: 0,150 }}...</li>
10
10
  {% endfor %}
data/_layouts/home.html CHANGED
@@ -13,17 +13,13 @@
13
13
  <div class="row">
14
14
  <div class="col-sm-12 col-lg-8">
15
15
  {% include home/news-and-events.html %}
16
+ {% include home/planet.html -%}
16
17
  </div>
17
18
  <div class="col-sm-12 col-lg-4">
18
19
  {% include home/distributions.html -%}
19
20
  {% include home/sponsors.html %}
20
21
  </div>
21
22
  </div>
22
- <div class="row">
23
- <div class="col-sm-12">
24
- {% include home/planet.html -%}
25
- </div>
26
- </div>
27
23
  </div>
28
24
  </main>
29
25
 
@@ -45,6 +45,22 @@
45
45
  }
46
46
  }
47
47
 
48
+ .sponsor {
49
+ @extend .col;
50
+ @extend %-margin;
51
+ display: flex;
52
+ justify-content: space-between;
53
+ flex-direction: row;
54
+ &__message {
55
+ }
56
+ &__logo {
57
+ img {
58
+ padding: 15px;
59
+ background-color: $white;
60
+ }
61
+ }
62
+ }
63
+
48
64
  .copyright {
49
65
  @extend .col;
50
66
  @extend %-margin;
@@ -52,6 +52,50 @@
52
52
  &__content {
53
53
  @extend .col-sm-12;
54
54
  @include content;
55
+ &__autoindex {
56
+ // The autoindex is not directly used by website content but by external
57
+ // sites (e.g., mirror.centos.org, people.centos.org and all the
58
+ // user-specific pages under it.
59
+ &__list {
60
+ padding-bottom: $paragraph-margin-bottom;
61
+ border-bottom: 1px solid lightgray;
62
+ }
63
+ img {
64
+ width: auto;
65
+ }
66
+ pre {
67
+ background: none;
68
+ border: none;
69
+ max-height: none;
70
+ overflow-y: hidden;
71
+ padding: 0;
72
+ }
73
+ }
74
+
75
+ &__mailman {
76
+ &__listinfo {
77
+ &> table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1),
78
+ &> table:nth-child(3) > tbody:nth-child(1) > tr:nth-child(1) > td {
79
+ background-color: $white;
80
+ border: none;
81
+ }
82
+ &> table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(2) > td:nth-child(1) > font:nth-child(1) {
83
+ @extend .h3;
84
+ }
85
+ &> table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(2) > td {
86
+ border: none;
87
+ }
88
+ &> table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(3) {
89
+ display: none;
90
+ }
91
+ &> table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(4) {
92
+ @extend .text-white, .bg-dark;
93
+ }
94
+ img {
95
+ width: auto;
96
+ }
97
+ }
98
+ }
55
99
  }
56
100
  }
57
101
 
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * jekyll-theme-centos v0.6.9 (https://gitlab.com/areguera/jekyll-theme-centos/)
2
+ * jekyll-theme-centos v0.6.14 (https://gitlab.com/areguera/jekyll-theme-centos/)
3
3
  * Copyright 2020-2021 Alain Reguera Delgado
4
4
  * Licensed under MIT (https://gitlab.com/areguera/jekyll-theme-centos/-/blob/master/LICENSE)
5
5
  */
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.6.9
4
+ version: 0.6.14
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: 2021-05-23 00:00:00.000000000 Z
11
+ date: 2021-05-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll