jekyll-theme-centos 0.1.10 → 0.1.15

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: 5a2838032ef449c49e4083deda1edd55043b93f8085a4106c2f9b80584ad90c0
4
- data.tar.gz: 7260a0207a8ad196591f7627d903510b64e66eb8c1831a039dfb0a85c23693b2
3
+ metadata.gz: f12183c184ab67c73ce8689a2f7f66dcb4ae75f5bdb5c697b7b05cba9aea8c7d
4
+ data.tar.gz: 478ede7e079e9157d2e6d94415b29c67d4afb5ef2006e16a9b3b03916b4909cd
5
5
  SHA512:
6
- metadata.gz: b88116623d8f12ccd585c0715eb1be1867f123b44f335b7351b4d8eb7f418cd7b5c5d59c011e547db76d78860daad007d115ed4fe556a179c01a62875b5a5c27
7
- data.tar.gz: e0a5cd10294a03537286515d9c163f684434e19893e78555730aa7a749bfdbe585fb37c9175f121064c6f8bfc6fab9f5e073f6b5a5d46a04ae0e8b61c53940bb
6
+ metadata.gz: e7d83fadcafd9f609fec6c45b1c5aacae800ffd71342fed4f158562a058a3e2892d1b686c3189a2f25e544a441d73ac97ca1ad2be30027c67b5ce92fc8f960b9
7
+ data.tar.gz: cc1072702b150120b8e36f0f5d723c04c0c6360c022f9bbdb48007f90c2da07d24ccee6f873a5757698e8c8c7c77fde9945fd4e5d13417165edd7f219d402969
@@ -1,42 +1,48 @@
1
1
  <footer class="footer">
2
2
  <div class="container">
3
- <div class="row justify-content-center">
4
- <section class="about">
5
- <h4>About</h4>
3
+ <div class="row">
4
+
5
+ {% assign column = site.navbar | where: "name", site.footer_links.column1 %}
6
+ {% for section in column %}
7
+ <section class="links">
8
+ <h6><i class="{{ section.icon }}"></i> {{ section.name }}</h6>
6
9
  <ul>
7
- <li><a href="/about">About CentOS</a></li>
8
- <li><a href="https://wiki.centos.org/FAQ">Frequently Asked Questions (FAQs)</a></li>
9
- <li><a href="https://wiki.centos.org/SpecialInterestGroups">Special Interest Groups (SIGs)</a></li>
10
- <li><a href="/variants">CentOS Variants</a></li>
11
- <li><a href="/about/governance">Governance</a></li>
10
+ {% for item in section.menu %}
11
+ <li><a href="{{ item.link }}">{{ item.name }}</a></li>
12
+ {% endfor %}
12
13
  </ul>
13
14
  </section>
14
- <section class="community">
15
- <h4>Community</h4>
15
+ {% endfor %}
16
+
17
+ {% assign column = site.navbar | where: "name", site.footer_links.column2 %}
18
+ {% for section in column %}
19
+ <section class="links">
20
+ <h6><i class="{{ section.icon }}"></i> {{ section.name }}</h6>
16
21
  <ul>
17
- <li><a href="https://wiki.centos.org/Contribute">Contribute</a></li>
18
- <li><a href="https://www.centos.org/forums/">Forums</a></li>
19
- <li><a href="https://wiki.centos.org/GettingHelp/ListInfo">Mailing Lists</a></li>
20
- <li><a href="https://wiki.centos.org/irc">IRC</a></li>
21
- <li><a href="/community/calendar/">Calendar &amp; IRC Meeting List</a></li>
22
- <li><a href="http://planet.centos.org/">Planet</a></li>
23
- <li><a href="https://bugs.centos.org/">Submit Bug</a></li>
22
+ {% for item in section.menu %}
23
+ <li><a href="{{ item.link }}">{{ item.name }}</a></li>
24
+ {% endfor %}
24
25
  </ul>
25
26
  </section>
27
+ {% endfor %}
28
+
26
29
  <section class="project">
27
- <h4>The CentOS Project</h4>
28
- <p class="lead">Community-driven free software effort focused on delivering a robust open source ecosystem around a Linux platform.</p>
30
+ <h4>{{ site.title }}</h4>
31
+ <p class="lead">{{ site.description }}</p>
29
32
  <div class="lead social">
30
- <a href="https://www.facebook.com/groups/centosproject/"><i class="fab fa-facebook-f"></i></a>
31
- <a href="https://twitter.com/centosproject"><i class="fab fa-twitter"></i></a>
32
- <a href="https://youtube.com/TheCentOSProject"><i class="fab fa-youtube"></i></a>
33
- <a href="https://www.linkedin.com/groups/22405"><i class="fab fa-linkedin"></i></a>
34
- <a href="https://www.reddit.com/r/CentOS/"><i class="fab fa-reddit"></i></a>
33
+ {% for item in site.footer_links.social %}
34
+ <a href="{{ item.link }}"><i class="{{ item.icon }}"></i></a>
35
+ {% endfor %}
35
36
  </div>
36
37
  </section>
38
+
39
+ </div>
40
+
41
+ <div class="row">
37
42
  <section class="copyright">
38
- <p>Copyright &copy; 2020 The CentOS Project | <a href="/legal">Legal</a> | <a href="/legal/privacy">Privacy</a> | <a href="https://git.centos.org/centos/centos.org">Site Source</a></p>
43
+ <p>Copyright &copy; {{ site.time | date: "%Y" }} {{ site.title }} {% for item in site.footer_links.copyright %} | <a href="{{ item.link }}">{{ item.text }}</a>{% endfor %}</p>
39
44
  </section>
40
45
  </div>
46
+
41
47
  </div>
42
48
  </footer>
@@ -3,7 +3,7 @@
3
3
  {% include header/home.html %}
4
4
  {% elsif page.layout == "blog" %}
5
5
  {% include header/blog.html %}
6
- {% elsif page.layout == "blog-post" %}
6
+ {% elsif page.layout == "post" %}
7
7
  {% include header/post.html %}
8
8
  {% else %}
9
9
  {% include header/page.html %}
@@ -2,12 +2,13 @@
2
2
  <div class="row">
3
3
  <div class="col-7">
4
4
  <header>
5
- <h1>{{ page.title }}</h1>
5
+ <h1>{{ site.title }}</h1>
6
6
  </header>
7
- <p class="lead">{{ page.title_lead }}</p>
8
- <p class="lead">We offer two Linux distros:</p>
9
- <a class="btn btn-light btn-lg" role="button" href="/centos-linux"><i class="fas fa-download"></i> <strong>CentOS Linux</strong></a>
10
- <a class="btn btn-light btn-lg" role="button" href="/centos-stream"><i class="fas fa-download"></i> <strong>CentOS Stream</strong></a>
7
+ <p class="lead">{{ site.description }}</p>
8
+ <p class="lead">{{ site.header.preamble }}</p>
9
+ {% for item in site.header.worklines %}
10
+ <a class="btn btn-light btn-lg" role="button" href="{{ item.link }}"><i class="{{ item.icon }}"></i> <strong>{{ item.name }}</strong></a>
11
+ {% endfor %}
11
12
  </div>
12
13
  </div>
13
14
  </div>
@@ -0,0 +1,23 @@
1
+ <nav class="navbar fixed-top navbar-expand-lg navbar-dark bg-dark">
2
+ <div class="container">
3
+ <a class="navbar-brand" href="{{ site.navbar-brand.link }}"><img src="{{ site.navbar-brand.path }}" height="32" alt="{{ site.navbar-brand.name }}"></a>
4
+ <button data-toggle="collapse" class="navbar-toggler" data-target="#navcol-1"><span class="sr-only">Toggle navigation</span><span class="navbar-toggler-icon"></span></button>
5
+ <div class="collapse navbar-collapse" id="navcol-1">
6
+ <ul class="nav navbar-nav ml-auto">
7
+ {% for nav-item in site.navbar %}
8
+ {% if nav-item.menu.size == 0 %}
9
+ <li class="nav-item" role="presentation"><a class="nav-link" href="{{ nav-item.link }}"><i class="{{ nav-item.icon }}"></i> {{ nav-item.name }}</a></li>
10
+ {% else %}
11
+ <li class="nav-item dropdown"><a class="dropdown-toggle nav-link" data-toggle="dropdown" aria-expanded="false" href="#"><i class="{{ nav-item.icon }}"></i> {{ nav-item.name }}</a>
12
+ <div class="dropdown-menu" role="menu">
13
+ {% for dropdown-item in nav-item.menu %}
14
+ <a class="dropdown-item" role="presentation" href="{{ dropdown-item.link }}">{{ dropdown-item.name }}</a>
15
+ {% endfor %}
16
+ </div>
17
+ </li>
18
+ {% endif %}
19
+ {% endfor %}
20
+ </ul>
21
+ </div>
22
+ </div>
23
+ </nav>
@@ -5,20 +5,31 @@ layout: default
5
5
  <main class="page">
6
6
  <div class="row">
7
7
 
8
- <div class="blog">
8
+ <div class="col">
9
+ <ol class="breadcrumb">
10
+ <li class="breadcrumb-item"><a href="/">Home</a></li>
11
+ <li class="breadcrumb-item active">{{ page.title | capitalize }}</li>
12
+ </ol>
13
+ </div>
9
14
 
10
- <div class="rss-subscribe">
11
- <a href="{{ "/feed.xml" | relative_url }}"><i class="fas fa-rss"></i> Subscribe</a>
12
- </div>
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>
17
+ </div>
13
18
 
19
+ </div>
20
+
21
+ <div class="row">
22
+ <div class="blog">
14
23
  {%- if site.posts.size > 0 -%}
15
24
  <div class="d-flex align-content-start flex-wrap align-content-stretch">
16
25
  {%- for post in paginator.posts -%}
17
26
  <div class="card">
18
27
  <a href="{{ post.url | relative_url }}">
19
28
  <div class="card-body">
20
- {%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%}
29
+ {%- assign date_format = site.date_format | default: "%b %-d, %Y" -%}
30
+ {%- if post.image -%}
21
31
  <img class="card-img-top" src="{{ post.image }}" alt="{{ post.title | escape }}">
32
+ {%- endif -%}
22
33
  <h5 class="card-title">{{ post.title | escape }}</h5>
23
34
  <p class="card-date">{{ post.date | date: date_format }}</p>
24
35
  {%- if site.show_excerpts -%}
@@ -35,12 +46,12 @@ layout: default
35
46
  <div class="paginator">
36
47
  {% if paginator.previous_page %}
37
48
  <span class="newer">
38
- <a href="{{ paginator.previous_page_path | prepend: site.baseurl }}"><i class="fas fa-arrow-left"></i> Newer</a>
49
+ <a href="{{ paginator.previous_page_path }}"><i class="fas fa-arrow-left"></i> Newer</a>
39
50
  </span>
40
51
  {% endif %}
41
52
  {% if paginator.next_page %}
42
53
  <span class="older">
43
- <a href="{{ paginator.next_page_path | prepend: site.baseurl }}"> Older <i class="fas fa-arrow-right"></i></a>
54
+ <a href="{{ paginator.next_page_path }}"> Older <i class="fas fa-arrow-right"></i></a>
44
55
  </span>
45
56
  {% endif %}
46
57
  </div>
@@ -4,7 +4,7 @@
4
4
  {% include head.html -%}
5
5
 
6
6
  <body>
7
- {% include nav.html -%}
7
+ {% include navbar.html -%}
8
8
  {% include header.html -%}
9
9
 
10
10
  {{ content }}
@@ -5,7 +5,7 @@
5
5
 
6
6
  <body>
7
7
 
8
- {% include nav.html -%}
8
+ {% include navbar.html -%}
9
9
  {% include header.html -%}
10
10
 
11
11
  <main class="page">
@@ -5,7 +5,7 @@
5
5
 
6
6
  <body>
7
7
 
8
- {% include nav.html -%}
8
+ {% include navbar.html -%}
9
9
  {% include header.html -%}
10
10
 
11
11
  <main class="page">
@@ -37,4 +37,3 @@
37
37
  </body>
38
38
 
39
39
  </html>
40
-
@@ -15,7 +15,7 @@ layout: default
15
15
  </aside>
16
16
 
17
17
  <article class="aside-article">
18
- {% if page.image != "" %}
18
+ {% if page.image %}
19
19
  <figure class="figure">
20
20
  <img src="{{ page.image }}" alt="{{ page.title | escape }}">
21
21
  </figure>
@@ -20,18 +20,13 @@
20
20
  margin-bottom: 0;
21
21
  }
22
22
 
23
- .about {
24
- @extend .col-sm-6, .col-md-3;
25
- @extend %-margin;
26
- }
27
-
28
- .community {
29
- @extend .col-sm-6, .col-md-3;
23
+ .links {
24
+ @extend .col-sm-3;
30
25
  @extend %-margin;
31
26
  }
32
27
 
33
28
  .project {
34
- @extend .col-md-6;
29
+ @extend .col;
35
30
  @extend %-margin;
36
31
 
37
32
  .social {
@@ -42,6 +37,7 @@
42
37
  }
43
38
 
44
39
  .copyright {
40
+ @extend .col;
45
41
  @extend %-margin;
46
42
  font-size: small;
47
43
  }
@@ -131,12 +131,6 @@
131
131
  }
132
132
  }
133
133
 
134
- .rss-subscribe {
135
- @extend .col-md-12;
136
- @extend .text-right;
137
- margin-bottom: 1em;
138
- }
139
-
140
134
  .paginator {
141
135
  border-top: 1px solid $nord-color-4;
142
136
  margin-top: 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.10
4
+ version: 0.1.15
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-19 00:00:00.000000000 Z
11
+ date: 2020-12-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -71,7 +71,7 @@ files:
71
71
  - _includes/home/around.html
72
72
  - _includes/home/news.html
73
73
  - _includes/home/sponsors.html
74
- - _includes/nav.html
74
+ - _includes/navbar.html
75
75
  - _includes/page/alert-danger.html
76
76
  - _includes/page/alert-info.html
77
77
  - _includes/page/alert-success.html
@@ -1,30 +0,0 @@
1
- <nav class="navbar fixed-top navbar-expand-lg navbar-dark bg-dark">
2
- <div class="container">
3
- <a class="navbar-brand" href="/"><img src="/assets/img/logo.png" height="32" alt="{{ site.title }}"></a>
4
- <button data-toggle="collapse" class="navbar-toggler" data-target="#navcol-1"><span class="sr-only">Toggle navigation</span><span class="navbar-toggler-icon"></span></button>
5
- <div class="collapse navbar-collapse" id="navcol-1">
6
- <ul class="nav navbar-nav ml-auto">
7
- <li class="nav-item" role="presentation"><a class="nav-link" href="/download"><i class="fas fa-download"></i> Download</a></li>
8
- <li class="nav-item dropdown"><a class="dropdown-toggle nav-link" data-toggle="dropdown" aria-expanded="false" href="#"><i class="fas fa-info-circle"></i> About</a>
9
- <div class="dropdown-menu" role="menu"><a class="dropdown-item" role="presentation" href="/about">About CentOS</a><a class="dropdown-item" role="presentation" href="https://wiki.centos.org/FAQ">Frequently Asked Questions (FAQs)</a><a class="dropdown-item" role="presentation" href="https://wiki.centos.org/SpecialInterestGroups">Special Interest Groups (SIGs)</a><a class="dropdown-item" role="presentation" href="/variants">CentOS Variants</a><a class="dropdown-item" role="presentation" href="/about/governance">Governance</a></div>
10
- </li>
11
- <li class="nav-item dropdown"><a class="dropdown-toggle nav-link" data-toggle="dropdown" aria-expanded="false" href="#"><i class="fas fa-users"></i> Community</a>
12
- <div class="dropdown-menu" role="menu">
13
- <a class="dropdown-item" role="presentation" href="https://wiki.centos.org/Contribute">Contribute</a>
14
- <a class="dropdown-item" role="presentation" href="https://www.centos.org/forums/">Forums</a>
15
- <a class="dropdown-item" role="presentation" href="https://wiki.centos.org/GettingHelp/ListInfo">Mailing Lists</a>
16
- <a class="dropdown-item" role="presentation" href="https://wiki.centos.org/irc">IRC</a>
17
- <a class="dropdown-item" role="presentation" href="/community/calendar/">Calendar &amp; IRC Meeting List</a>
18
- <a class="dropdown-item" role="presentation" href="http://planet.centos.org/">Planet</a>
19
- <a class="dropdown-item" role="presentation" href="https://bugs.centos.org/">Submit Bug</a>
20
- </div>
21
- </li>
22
- <li class="nav-item dropdown"><a class="dropdown-toggle nav-link" data-toggle="dropdown" aria-expanded="false" href="#"><i class="fas fa-book"></i> Documentation</a>
23
- <div class="dropdown-menu" role="menu"><a class="dropdown-item" role="presentation" href="https://wiki.centos.org/">Wiki</a><a class="dropdown-item" role="presentation" href="https://docs.centos.org/">Manuals</a><a class="dropdown-item" role="presentation" href="/keys">GPG Key Info</a></div>
24
- </li>
25
- <li class="nav-item" role="presentation"><a class="nav-link" href="/search/"><i class="fas fa-search"></i> Search</a></li>
26
- <li class="nav-item" role="presentation"><a class="nav-link" href="http://wiki.centos.org/Documentation?action=show&amp;redirect=GettingHelp"><i class="fas fa-life-ring"></i> Help</a></li>
27
- </ul>
28
- </div>
29
- </div>
30
- </nav>