jekyll-theme-centos 2.28.0 → 2.29.0
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 +4 -4
- data/_data/base/copyright.yml +12 -0
- data/_data/base/navbar.yml +0 -4
- data/_data/base/social.yml +22 -0
- data/_includes/base/copyright.html +2 -2
- data/_includes/base/finale.html +1 -1
- data/_includes/base/head.html +6 -4
- data/_includes/base/header.html +1 -1
- data/_includes/base/{nav.html → navbar.html} +3 -3
- data/_includes/base/script.html +1 -1
- data/_includes/base/shortcuts.html +1 -1
- data/_includes/base/toc-accordion.html +2 -2
- data/_layouts/base/default.html +1 -1
- data/_sass/base/_customization.scss +21 -18
- data/_sass/base/_variables.scss +36 -19
- data/assets/css/base/stylesheet.min.scss +1 -0
- data/assets/icons/android-chrome-192.png +0 -0
- data/assets/icons/android-chrome-512.png +0 -0
- data/assets/icons/apple-touch-icon.png +0 -0
- data/assets/icons/favicon-16.png +0 -0
- data/assets/icons/favicon-32.png +0 -0
- metadata +4 -6
- data/_data/base/footer.yml +0 -32
- data/_data/base/identity.yml +0 -20
- data/_data/base/navbar_absolute.yml +0 -74
- data/_data/base/navbar_www.yml +0 -74
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 23167e4d6b058b509e4728cfe15ff441c868bcc0d1975f95df9eac8f15d94019
|
|
4
|
+
data.tar.gz: ac12ba26bf300c4af88b6d2ef36cf94e08756439cfc3a41b07fdb14b33c3e759
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b55d5dc053125de8e8aad88e68ac6dab327003e9c33c23d61f72caa1310035f20cacf126dba864e000ace8d96ef03ec7ce771af5ec8ef0724e2513e252621c91
|
|
7
|
+
data.tar.gz: e3abdba4c067f09d660b39eea57bd34949a0807fca75ae6d804e5d9371d454f9cea8c857468963d8602c964a625bfd14cbe86a97f1109037106662c141bc5f68
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
---
|
|
2
|
+
#
|
|
3
|
+
# site.data.base.copyright - Control copyright information and legal links.
|
|
4
|
+
#
|
|
5
|
+
author: "The CentOS Project"
|
|
6
|
+
legals:
|
|
7
|
+
- text: "Legal"
|
|
8
|
+
link: "https://www.centos.org/legal"
|
|
9
|
+
- text: "Privacy"
|
|
10
|
+
link: "https://www.centos.org/legal/privacy"
|
|
11
|
+
- text: "Site source"
|
|
12
|
+
link: "https://git.centos.org/centos/centos.org"
|
data/_data/base/navbar.yml
CHANGED
|
@@ -6,7 +6,6 @@
|
|
|
6
6
|
#
|
|
7
7
|
- name: "Layouts"
|
|
8
8
|
icon: "fa-solid fa-layer-group"
|
|
9
|
-
link: "/layouts/"
|
|
10
9
|
menu:
|
|
11
10
|
- name: "base/default"
|
|
12
11
|
link: "/layouts/default/"
|
|
@@ -14,7 +13,6 @@
|
|
|
14
13
|
|
|
15
14
|
- name: "Includes"
|
|
16
15
|
icon: "fa-solid fa-arrows-turn-to-dots"
|
|
17
|
-
link: "/includes/"
|
|
18
16
|
menu:
|
|
19
17
|
- name: "base/announcements.html"
|
|
20
18
|
link: "/includes/announcements/"
|
|
@@ -34,7 +32,6 @@
|
|
|
34
32
|
|
|
35
33
|
- name: "Sass"
|
|
36
34
|
icon: "fa-brands fa-sass"
|
|
37
|
-
link: "/sass/"
|
|
38
35
|
menu:
|
|
39
36
|
- name: "base/variables"
|
|
40
37
|
link: "/sass/variables"
|
|
@@ -44,7 +41,6 @@
|
|
|
44
41
|
|
|
45
42
|
- name: "Data"
|
|
46
43
|
icon: "fa-solid fa-file-code"
|
|
47
|
-
link: "/data/"
|
|
48
44
|
menu:
|
|
49
45
|
- name: "site.data.base.identity"
|
|
50
46
|
link: "/data/identity"
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
---
|
|
2
|
+
#
|
|
3
|
+
# site.data.base.social - Provides social networks information.
|
|
4
|
+
#
|
|
5
|
+
- name: Facebook
|
|
6
|
+
icon: "fa-brands fa-facebook-f"
|
|
7
|
+
link: "https://www.facebook.com/groups/centosproject/"
|
|
8
|
+
- name: Twitter
|
|
9
|
+
icon: "fa-brands fa-twitter"
|
|
10
|
+
link: "https://twitter.com/centos"
|
|
11
|
+
- name: Youtube
|
|
12
|
+
icon: "fa-brands fa-youtube"
|
|
13
|
+
link: "https://youtube.com/TheCentOSProject"
|
|
14
|
+
- name: Linkedin
|
|
15
|
+
icon: "fa-brands fa-linkedin"
|
|
16
|
+
link: "https://www.linkedin.com/groups/22405"
|
|
17
|
+
- name: Reddit
|
|
18
|
+
icon: "fa-brands fa-reddit"
|
|
19
|
+
link: "https://www.reddit.com/r/CentOS/"
|
|
20
|
+
- name: Mastodon
|
|
21
|
+
icon: "fa-brands fa-mastodon"
|
|
22
|
+
link: "https://fosstodon.org/@centos"
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
<div class="col">
|
|
3
3
|
<span>Copyright ©</span>
|
|
4
4
|
<span id="copyright_year"></span>
|
|
5
|
-
<span>{{ site.data.base.
|
|
6
|
-
{% for item in site.data.base.
|
|
5
|
+
<span>{{ site.data.base.copyright.author }}</span>
|
|
6
|
+
{% for item in site.data.base.copyright.legals -%}
|
|
7
7
|
<span class="border-start ms-2 ps-2">
|
|
8
8
|
<a class="link-light" href="{{ item.link }}">{{ item.text }}</a>
|
|
9
9
|
</span>
|
data/_includes/base/finale.html
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
{% if page.with_social != false %}
|
|
7
7
|
<div class="col-sm-12 col-lg-4 d-flex justify-content-sm-start justify-content-lg-end">
|
|
8
8
|
<ul class="nav list-unstyled">
|
|
9
|
-
{% for item in site.data.base.
|
|
9
|
+
{% for item in site.data.base.social -%}
|
|
10
10
|
<li class="nav-item">
|
|
11
11
|
<a class="btn btn-sm fs-5 link-primary" href="{{ item.link }}" role="button" aria-label="{{ item.name }}" data-bs-placement="bottom" data-bs-title="{{ item.name }}"><i class="{{ item.icon }}"></i></a>
|
|
12
12
|
</li>
|
data/_includes/base/head.html
CHANGED
|
@@ -7,11 +7,13 @@
|
|
|
7
7
|
<link rel="icon" href="{{ site.url }}{{ site.baseurl }}/assets/icons/favicon.svg" sizes="any" />
|
|
8
8
|
<link rel="apple-touch-icon" href="{{ site.url }}{{ site.baseurl }}/assets/icons/apple-touch-icon.png" sizes="180x180" />
|
|
9
9
|
<link rel="manifest" href="{{ site.url }}{{ site.baseurl }}/site.webmanifest" />
|
|
10
|
-
<link rel="
|
|
11
|
-
<link rel="
|
|
12
|
-
<link rel="stylesheet" href="https://
|
|
10
|
+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
11
|
+
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
12
|
+
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Source+Code+Pro:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap">
|
|
13
|
+
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap">
|
|
14
|
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
|
|
13
15
|
{% if page.with_highlight != false -%}
|
|
14
|
-
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.7.0/styles/{{ page.with_highlight | default
|
|
16
|
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.7.0/styles/{{ page.with_highlight | replace_first: 'base16-', 'base16/' | default: 'default' }}.min.css">
|
|
15
17
|
<link rel="stylesheet" href="https://unpkg.com/highlightjs-copy@1.0.3/dist/highlightjs-copy.min.css" />
|
|
16
18
|
{% endif -%}
|
|
17
19
|
{% if page.with_datatables != false -%}
|
data/_includes/base/header.html
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<header class="bg-image bg-dark text-
|
|
1
|
+
<header class="bg-image bg-dark text-white"{% if page.with_motif !="" %} style="background-image: url('{{ site.url }}{{ site.baseurl }}/assets/img/{{ page.with_motif }}');"{% endif %}>
|
|
2
2
|
<div class="container py-5">
|
|
3
3
|
{% if page.with_announcements and page.with_announcements.size > 0 -%}
|
|
4
4
|
<div class="row">
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{% assign navbar = site.data[site.navbar_data_dirname][site.navbar_data_filename] %}
|
|
2
2
|
<nav class="navbar sticky-top navbar-expand-lg navbar-dark bg-dark shadow">
|
|
3
3
|
<div class="container">
|
|
4
|
-
<a class="navbar-brand pt-1" href="{{ site.baseurl }}/"><img role="img" src="{{ site.baseurl }}/{{
|
|
4
|
+
<a class="navbar-brand pt-1" href="{{ site.url }}{{ site.baseurl }}/"><img role="img" src="{{ site.url }}{{ site.baseurl }}/assets/img/{{ page.with_logo }}" height="32" alt="{{ site.title }}" />{% if page.with_manifestation != "" %}<span class="manifestation border-start border-light ps-3 ms-3 py-2 fs-6">{{ page.with_manifestation }}</span>{% endif %}</a>
|
|
5
5
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarContent" aria-controls="navbarContent" aria-expanded="false" aria-label="Toggle navigation">
|
|
6
6
|
<span class="navbar-toggler-icon"></span>
|
|
7
7
|
</button>
|
|
@@ -11,14 +11,14 @@
|
|
|
11
11
|
{% for navitem in navitems -%}
|
|
12
12
|
{% if navitem.menu.size == 0 -%}
|
|
13
13
|
<li class="nav-item">
|
|
14
|
-
<a class="nav-link" role="presentation" href="{{ site.baseurl }}{{ navitem.link }}"><i class="{{ navitem.icon }}"></i> {{ navitem.name }}</a>
|
|
14
|
+
<a class="nav-link" role="presentation" href="{{ site.url }}{{ site.baseurl }}{{ navitem.link }}"><i class="{{ navitem.icon }}"></i> {{ navitem.name }}</a>
|
|
15
15
|
</li>
|
|
16
16
|
{% else -%}
|
|
17
17
|
<li class="nav-item dropdown">
|
|
18
18
|
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown-{{ forloop.index }}" role="button" data-bs-toggle="dropdown" aria-expanded="false"><i class="{{ navitem.icon }}"></i> {{ navitem.name }}</a>
|
|
19
19
|
<ul class="dropdown-menu dropdown-menu-dark shadow" aria-labelledby="navbarDropdown-{{ forloop.index }}">
|
|
20
20
|
{% for dropdownitem in navitem.menu -%}
|
|
21
|
-
<li><a class="dropdown-item" role="presentation" href="{{ site.baseurl }}{{ dropdownitem.link }}">{{ dropdownitem.name }}</a></li>
|
|
21
|
+
<li><a class="dropdown-item" role="presentation" href="{{ site.url }}{{ site.baseurl }}{{ dropdownitem.link }}">{{ dropdownitem.name }}</a></li>
|
|
22
22
|
{% endfor -%}
|
|
23
23
|
</ul>
|
|
24
24
|
</li>
|
data/_includes/base/script.html
CHANGED
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
<script src="https://cdn.datatables.net/1.13.5/js/dataTables.bootstrap5.min.js"></script>
|
|
21
21
|
<script>
|
|
22
22
|
$(document).ready(function () {
|
|
23
|
-
$("
|
|
23
|
+
$("table.dataTable").DataTable({
|
|
24
24
|
"pageLength": 5,
|
|
25
25
|
"lengthMenu": [5,10,25,50,75,100]
|
|
26
26
|
});
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
<h6 class="fw-bold"><i class="{{ section.icon }}"></i> {{ section.name }}</h6>
|
|
20
20
|
<ul class="nav flex-column">
|
|
21
21
|
{% for item in section.menu -%}
|
|
22
|
-
<li class="nav-item"><a href="{{ site.baseurl }}{{ item.link }}" class="link-light px-0">{{ item.name }}</a></li>
|
|
22
|
+
<li class="nav-item"><a href="{{ site.url }}{{ site.baseurl }}{{ item.link }}" class="link-light px-0">{{ item.name }}</a></li>
|
|
23
23
|
{% endfor %}
|
|
24
24
|
</ul>
|
|
25
25
|
</div>
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
<div class="accordion" id="pageTocAccordion">
|
|
2
2
|
<div class="accordion-item shadow-sm">
|
|
3
3
|
<div class="accordion-header" id="flush-headingOne">
|
|
4
|
-
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#flush-collapseOne" aria-expanded="false" aria-controls="flush-collapseOne"><i class="fa-solid fa-bars"></i> <span class="mx-3">Table of Contents</span></button>
|
|
4
|
+
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#flush-collapseOne" aria-expanded="false" aria-controls="flush-collapseOne"><i class="fa-solid fa-bars"></i> <span class="mx-3 fw-bold">Table of Contents</span></button>
|
|
5
5
|
</div>
|
|
6
6
|
<div id="flush-collapseOne" class="accordion-collapse collapse" aria-labelledby="flush-headingOne" data-bs-parent="#pageTocAccordion">
|
|
7
|
-
<div class="accordion-body">{% include base/toc.html html=content %}</div>
|
|
7
|
+
<div class="accordion-body small">{% include base/toc.html html=content %}</div>
|
|
8
8
|
</div>
|
|
9
9
|
</div>
|
|
10
10
|
</div>
|
data/_layouts/base/default.html
CHANGED
|
@@ -2,6 +2,16 @@
|
|
|
2
2
|
// Adjustments
|
|
3
3
|
// --------------------------------------------------------------------------------
|
|
4
4
|
|
|
5
|
+
// --------------------------------------------------------------------------------
|
|
6
|
+
// Backgrounds
|
|
7
|
+
// --------------------------------------------------------------------------------
|
|
8
|
+
.bg-image {
|
|
9
|
+
background-image: url("../../img/centos-motif.png");
|
|
10
|
+
background-size: cover;
|
|
11
|
+
background-repeat: no-repeat;
|
|
12
|
+
background-position: center;
|
|
13
|
+
}
|
|
14
|
+
|
|
5
15
|
nav {
|
|
6
16
|
// --------------------------------------------------------------------------------
|
|
7
17
|
// Nav
|
|
@@ -13,22 +23,6 @@ nav {
|
|
|
13
23
|
}
|
|
14
24
|
}
|
|
15
25
|
|
|
16
|
-
header {
|
|
17
|
-
// --------------------------------------------------------------------------------
|
|
18
|
-
// Backgrounds
|
|
19
|
-
// --------------------------------------------------------------------------------
|
|
20
|
-
&.bg-image {
|
|
21
|
-
background-image: url("../../img/centos-motif.png");
|
|
22
|
-
background-size: cover;
|
|
23
|
-
background-repeat: no-repeat;
|
|
24
|
-
background-position: center;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
&.bg-light-radial-gradient {
|
|
28
|
-
background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(248, 249, 250, 0) 100%);
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
|
|
32
26
|
main {
|
|
33
27
|
// --------------------------------------------------------------------------------
|
|
34
28
|
// Navbar and linked headings' correction.
|
|
@@ -72,12 +66,20 @@ main {
|
|
|
72
66
|
p {
|
|
73
67
|
&.alert {
|
|
74
68
|
padding-left: 3.4rem;
|
|
75
|
-
border-left: 3px solid;
|
|
76
69
|
background-repeat: no-repeat;
|
|
77
70
|
background-position: 1rem 1rem;
|
|
78
71
|
}
|
|
79
72
|
&.alert-danger {
|
|
80
|
-
background-image:
|
|
73
|
+
background-image: $alert-danger-icon;
|
|
74
|
+
}
|
|
75
|
+
&.alert-warning {
|
|
76
|
+
background-image: $alert-warning-icon;
|
|
77
|
+
}
|
|
78
|
+
&.alert-info {
|
|
79
|
+
background-image: $alert-info-icon;
|
|
80
|
+
}
|
|
81
|
+
&.alert-success {
|
|
82
|
+
background-image: $alert-success-icon;
|
|
81
83
|
}
|
|
82
84
|
}
|
|
83
85
|
}
|
|
@@ -93,6 +95,7 @@ main {
|
|
|
93
95
|
// DataTables
|
|
94
96
|
// --------------------------------------------------------------------------------
|
|
95
97
|
div.dataTables_wrapper {
|
|
98
|
+
margin-bottom: 1rem;
|
|
96
99
|
div.dataTables_info {
|
|
97
100
|
padding-top: 0;
|
|
98
101
|
}
|
data/_sass/base/_variables.scss
CHANGED
|
@@ -1,24 +1,41 @@
|
|
|
1
1
|
//
|
|
2
|
-
// CentOS Branding
|
|
3
|
-
//
|
|
4
|
-
$centos-color-1: #a14f8c;
|
|
5
|
-
$centos-color-2: #262577;
|
|
6
|
-
$centos-color-3: #9ccd2a;
|
|
7
|
-
$centos-color-4: #efa724;
|
|
8
|
-
//
|
|
9
2
|
// Bootstrap customization
|
|
10
3
|
//
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
$
|
|
14
|
-
$
|
|
15
|
-
$
|
|
16
|
-
$
|
|
4
|
+
|
|
5
|
+
// scss-docs-start color-variables
|
|
6
|
+
$centos-purple: #a14f8c;
|
|
7
|
+
$centos-orange: #efa724;
|
|
8
|
+
$centos-blue: #262577;
|
|
9
|
+
$centos-green: #9ccd2a;
|
|
10
|
+
// scss-docs-end color-variables
|
|
11
|
+
|
|
12
|
+
// scss-docs-start theme-color-variables
|
|
13
|
+
$primary: $centos-purple;
|
|
14
|
+
$secondary: $centos-orange;
|
|
15
|
+
$success: #198754;
|
|
16
|
+
$info: #0dcaf0;
|
|
17
|
+
$warning: #ffc107;
|
|
18
|
+
$danger: #dc3545;
|
|
17
19
|
$dark: #200735;
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
$
|
|
20
|
+
// scss-docs-end theme-color-variables
|
|
21
|
+
|
|
22
|
+
// scss-docs-start theme-text-variables
|
|
23
|
+
$primary-text-emphasis: shade-color($primary, 60%);
|
|
24
|
+
$secondary-text-emphasis: shade-color($secondary, 60%);
|
|
25
|
+
$success-text-emphasis: shade-color($success, 60%);
|
|
26
|
+
$info-text-emphasis: shade-color($info, 60%);
|
|
27
|
+
$warning-text-emphasis: shade-color($warning, 60%);
|
|
28
|
+
$danger-text-emphasis: shade-color($danger, 60%);
|
|
29
|
+
// scss-docs-end theme-text-variables
|
|
30
|
+
|
|
31
|
+
$font-family-sans-serif: "Montserrat", sans-serif;
|
|
32
|
+
$font-family-monospace: "Source Code Pro", monospace;
|
|
22
33
|
$headings-font-weight: 700;
|
|
23
|
-
$
|
|
24
|
-
|
|
34
|
+
$line-height-base: 1.65;
|
|
35
|
+
|
|
36
|
+
$dropdown-dark-bg: $dark;
|
|
37
|
+
$breadcrumb-divider: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='8' height='8'><path d='M2.5 0L1 1.5 3.5 4 1 6.5 2.5 8l4-4-4-4z'/></svg>");
|
|
38
|
+
$alert-warning-icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1.5em" fill="rgba(#{to-rgb($warning-text-emphasis)},1)" viewBox="0 0 512 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M256 32c14.2 0 27.3 7.5 34.5 19.8l216 368c7.3 12.4 7.3 27.7 .2 40.1S486.3 480 472 480H40c-14.3 0-27.6-7.7-34.7-20.1s-7-27.8 .2-40.1l216-368C228.7 39.5 241.8 32 256 32zm0 128c-13.3 0-24 10.7-24 24V296c0 13.3 10.7 24 24 24s24-10.7 24-24V184c0-13.3-10.7-24-24-24zm32 224a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z"/></svg>');
|
|
39
|
+
$alert-info-icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1.5em" fill="rgba(#{to-rgb($info-text-emphasis)},1)" viewBox="0 0 512 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM216 336h24V272H216c-13.3 0-24-10.7-24-24s10.7-24 24-24h48c13.3 0 24 10.7 24 24v88h8c13.3 0 24 10.7 24 24s-10.7 24-24 24H216c-13.3 0-24-10.7-24-24s10.7-24 24-24zm40-208a32 32 0 1 1 0 64 32 32 0 1 1 0-64z"/></svg>');
|
|
40
|
+
$alert-danger-icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1.5em" fill="rgba(#{to-rgb($danger-text-emphasis)},1)" viewBox="0 0 512 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm0-384c13.3 0 24 10.7 24 24V264c0 13.3-10.7 24-24 24s-24-10.7-24-24V152c0-13.3 10.7-24 24-24zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z"/></svg>');
|
|
41
|
+
$alert-success-icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1.5em" fill="rgba(#{to-rgb($success-text-emphasis)},1)" viewBox="0 0 512 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM369 209L241 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L335 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z"/></svg>');
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
data/assets/icons/favicon-16.png
CHANGED
|
Binary file
|
data/assets/icons/favicon-32.png
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-theme-centos
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.29.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- ReleaseBot
|
|
@@ -46,11 +46,9 @@ extensions: []
|
|
|
46
46
|
extra_rdoc_files: []
|
|
47
47
|
files:
|
|
48
48
|
- _config.yml
|
|
49
|
-
- _data/base/
|
|
50
|
-
- _data/base/identity.yml
|
|
49
|
+
- _data/base/copyright.yml
|
|
51
50
|
- _data/base/navbar.yml
|
|
52
|
-
- _data/base/
|
|
53
|
-
- _data/base/navbar_www.yml
|
|
51
|
+
- _data/base/social.yml
|
|
54
52
|
- _data/download/cards.yml
|
|
55
53
|
- _data/download/navbar.yml
|
|
56
54
|
- _data/people/navbar.yml
|
|
@@ -62,7 +60,7 @@ files:
|
|
|
62
60
|
- _includes/base/finale.html
|
|
63
61
|
- _includes/base/head.html
|
|
64
62
|
- _includes/base/header.html
|
|
65
|
-
- _includes/base/
|
|
63
|
+
- _includes/base/navbar.html
|
|
66
64
|
- _includes/base/script.html
|
|
67
65
|
- _includes/base/shortcuts.html
|
|
68
66
|
- _includes/base/toc-accordion.html
|
data/_data/base/footer.yml
DELETED
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
#
|
|
3
|
-
# site.data.base.footer - Control footer section.
|
|
4
|
-
#
|
|
5
|
-
social:
|
|
6
|
-
- name: Facebook
|
|
7
|
-
icon: "fa-brands fa-facebook-f"
|
|
8
|
-
link: "https://www.facebook.com/groups/centosproject/"
|
|
9
|
-
- name: Twitter
|
|
10
|
-
icon: "fa-brands fa-twitter"
|
|
11
|
-
link: "https://twitter.com/centos"
|
|
12
|
-
- name: Youtube
|
|
13
|
-
icon: "fa-brands fa-youtube"
|
|
14
|
-
link: "https://youtube.com/TheCentOSProject"
|
|
15
|
-
- name: Linkedin
|
|
16
|
-
icon: "fa-brands fa-linkedin"
|
|
17
|
-
link: "https://www.linkedin.com/groups/22405"
|
|
18
|
-
- name: Reddit
|
|
19
|
-
icon: "fa-brands fa-reddit"
|
|
20
|
-
link: "https://www.reddit.com/r/CentOS/"
|
|
21
|
-
- name: Mastodon
|
|
22
|
-
icon: "fa-brands fa-mastodon"
|
|
23
|
-
link: "https://fosstodon.org/@centos"
|
|
24
|
-
copyright:
|
|
25
|
-
author: "The CentOS Project"
|
|
26
|
-
legals:
|
|
27
|
-
- text: "Legal"
|
|
28
|
-
link: "https://www.centos.org/legal"
|
|
29
|
-
- text: "Privacy"
|
|
30
|
-
link: "https://www.centos.org/legal/privacy"
|
|
31
|
-
- text: "Site source"
|
|
32
|
-
link: "https://git.centos.org/centos/centos.org"
|
data/_data/base/identity.yml
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
#
|
|
3
|
-
# site.data.base.identity - Control the site branding (corporate visual
|
|
4
|
-
# identity) information.
|
|
5
|
-
#
|
|
6
|
-
title: "The CentOS Project"
|
|
7
|
-
description: >
|
|
8
|
-
Community-driven free software effort focused around the goal of providing a
|
|
9
|
-
rich base platform for open source communities to build upon.
|
|
10
|
-
|
|
11
|
-
logo:
|
|
12
|
-
link: ""
|
|
13
|
-
navbar: "assets/img/centos-whitelogo.svg"
|
|
14
|
-
footer: "assets/img/centos-logo.svg"
|
|
15
|
-
manifestation: ""
|
|
16
|
-
symbol:
|
|
17
|
-
link: ""
|
|
18
|
-
image: "assets/img/centos-symbol.svg"
|
|
19
|
-
motif:
|
|
20
|
-
image: "assets/img/centos-motif.png"
|
|
@@ -1,74 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
#
|
|
3
|
-
# site.data.base.navbar_absolute - Control top navigation bar using absolute
|
|
4
|
-
# links for both internal and external resources. Useful when you build the
|
|
5
|
-
# navigation bar for sites other than "www.centos.org" website and you want to
|
|
6
|
-
# keep references to "www.centos.org."
|
|
7
|
-
#
|
|
8
|
-
- name: "Download"
|
|
9
|
-
icon: "fas fa-download"
|
|
10
|
-
link: "https://www.centos.org/download"
|
|
11
|
-
menu: []
|
|
12
|
-
visible_on: ["navbar"]
|
|
13
|
-
- name: "About"
|
|
14
|
-
icon: "fas fa-info-circle"
|
|
15
|
-
link: "#"
|
|
16
|
-
menu:
|
|
17
|
-
- name: "About CentOS"
|
|
18
|
-
link: "https://www.centos.org/about"
|
|
19
|
-
- name: "Frequently Asked Questions (FAQs)"
|
|
20
|
-
link: "https://wiki.centos.org/FAQ"
|
|
21
|
-
- name: "Special Interest Groups (SIGs)"
|
|
22
|
-
link: "https://wiki.centos.org/SpecialInterestGroups"
|
|
23
|
-
- name: "CentOS Variants"
|
|
24
|
-
link: "https://www.centos.org/variants"
|
|
25
|
-
- name: "Governance"
|
|
26
|
-
link: "https://www.centos.org/about/governance"
|
|
27
|
-
visible_on: ["navbar", "footer"]
|
|
28
|
-
- name: "Community"
|
|
29
|
-
icon: "fas fa-users"
|
|
30
|
-
link: "#"
|
|
31
|
-
menu:
|
|
32
|
-
- name: "Contribute"
|
|
33
|
-
link: "https://wiki.centos.org/Contribute"
|
|
34
|
-
icon: "fas fa-hands-helping"
|
|
35
|
-
- name: "Forums"
|
|
36
|
-
link: "https://www.centos.org/forums/"
|
|
37
|
-
icon: "fas fa-comments"
|
|
38
|
-
- name: "Mailing Lists"
|
|
39
|
-
link: "https://wiki.centos.org/GettingHelp/ListInfo"
|
|
40
|
-
icon: "fas fa-envelope"
|
|
41
|
-
- name: "IRC"
|
|
42
|
-
link: "https://wiki.centos.org/irc"
|
|
43
|
-
icon: "fas fa-hashtag"
|
|
44
|
-
- name: "Calendar & IRC Meeting List"
|
|
45
|
-
link: "https://www.centos.org/community/calendar/"
|
|
46
|
-
icon: "fas fa-calendar-alt"
|
|
47
|
-
- name: "Planet"
|
|
48
|
-
link: "http://planet.centos.org/"
|
|
49
|
-
icon: "fas fa-newspaper"
|
|
50
|
-
- name: "Submit Bug"
|
|
51
|
-
link: "https://bugs.centos.org/"
|
|
52
|
-
icon: "fas fa-bug"
|
|
53
|
-
visible_on: ["navbar", "footer"]
|
|
54
|
-
- name: "Documentation"
|
|
55
|
-
icon: "fas fa-book"
|
|
56
|
-
link: "#"
|
|
57
|
-
menu:
|
|
58
|
-
- name: "Wiki"
|
|
59
|
-
link: "https://wiki.centos.org/"
|
|
60
|
-
- name: "Manuals"
|
|
61
|
-
link: "https://docs.centos.org/"
|
|
62
|
-
- name: "GPG Key Info"
|
|
63
|
-
link: "https://www.centos.org/keys"
|
|
64
|
-
visible_on: ["navbar", "footer"]
|
|
65
|
-
- name: "Help"
|
|
66
|
-
icon: "fas fa-life-ring"
|
|
67
|
-
link: "https://wiki.centos.org/Documentation?action=show&redirect=GettingHelp"
|
|
68
|
-
menu: []
|
|
69
|
-
visible_on: ["navbar"]
|
|
70
|
-
- name: "Search"
|
|
71
|
-
icon: "fas fa-search"
|
|
72
|
-
link: "https://www.centos.org/search"
|
|
73
|
-
menu: []
|
|
74
|
-
visible_on: []
|
data/_data/base/navbar_www.yml
DELETED
|
@@ -1,74 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
#
|
|
3
|
-
# site.data.base.navbar_www - Control top navigation bar using relative links
|
|
4
|
-
# for internal resources and absolute links for external resources. Useful when
|
|
5
|
-
# you need the same site to be browsable on different environments (e.g., www
|
|
6
|
-
# and www.dev).
|
|
7
|
-
#
|
|
8
|
-
- name: "Download"
|
|
9
|
-
icon: "fas fa-download"
|
|
10
|
-
link: "/download"
|
|
11
|
-
menu: []
|
|
12
|
-
visible_on: ["navbar"]
|
|
13
|
-
- name: "About"
|
|
14
|
-
icon: "fas fa-info-circle"
|
|
15
|
-
link: "#"
|
|
16
|
-
menu:
|
|
17
|
-
- name: "About CentOS"
|
|
18
|
-
link: "/about"
|
|
19
|
-
- name: "Frequently Asked Questions (FAQs)"
|
|
20
|
-
link: "https://wiki.centos.org/FAQ"
|
|
21
|
-
- name: "Special Interest Groups (SIGs)"
|
|
22
|
-
link: "https://wiki.centos.org/SpecialInterestGroups"
|
|
23
|
-
- name: "CentOS Variants"
|
|
24
|
-
link: "/variants"
|
|
25
|
-
- name: "Governance"
|
|
26
|
-
link: "/about/governance"
|
|
27
|
-
visible_on: ["navbar", "footer"]
|
|
28
|
-
- name: "Community"
|
|
29
|
-
icon: "fas fa-users"
|
|
30
|
-
link: "#"
|
|
31
|
-
menu:
|
|
32
|
-
- name: "Contribute"
|
|
33
|
-
link: "https://wiki.centos.org/Contribute"
|
|
34
|
-
icon: "fas fa-hands-helping"
|
|
35
|
-
- name: "Forums"
|
|
36
|
-
link: "/forums/"
|
|
37
|
-
icon: "fas fa-comments"
|
|
38
|
-
- name: "Mailing Lists"
|
|
39
|
-
link: "https://wiki.centos.org/GettingHelp/ListInfo"
|
|
40
|
-
icon: "fas fa-envelope"
|
|
41
|
-
- name: "IRC"
|
|
42
|
-
link: "https://wiki.centos.org/irc"
|
|
43
|
-
icon: "fas fa-hashtag"
|
|
44
|
-
- name: "Calendar & IRC Meeting List"
|
|
45
|
-
link: "/community/calendar/"
|
|
46
|
-
icon: "fas fa-calendar-alt"
|
|
47
|
-
- name: "Planet"
|
|
48
|
-
link: "http://planet.centos.org/"
|
|
49
|
-
icon: "fas fa-newspaper"
|
|
50
|
-
- name: "Submit Bug"
|
|
51
|
-
link: "https://bugs.centos.org/"
|
|
52
|
-
icon: "fas fa-bug"
|
|
53
|
-
visible_on: ["navbar", "footer"]
|
|
54
|
-
- name: "Documentation"
|
|
55
|
-
icon: "fas fa-book"
|
|
56
|
-
link: "#"
|
|
57
|
-
menu:
|
|
58
|
-
- name: "Wiki"
|
|
59
|
-
link: "https://wiki.centos.org/"
|
|
60
|
-
- name: "Manuals"
|
|
61
|
-
link: "https://docs.centos.org/"
|
|
62
|
-
- name: "GPG Key Info"
|
|
63
|
-
link: "/keys"
|
|
64
|
-
visible_on: ["navbar", "footer"]
|
|
65
|
-
- name: "Help"
|
|
66
|
-
icon: "fas fa-life-ring"
|
|
67
|
-
link: "https://wiki.centos.org/Documentation?action=show&redirect=GettingHelp"
|
|
68
|
-
menu: []
|
|
69
|
-
visible_on: ["navbar"]
|
|
70
|
-
- name: "Search"
|
|
71
|
-
icon: "fas fa-search"
|
|
72
|
-
link: "/search"
|
|
73
|
-
menu: []
|
|
74
|
-
visible_on: []
|