jekyll-theme-centos 2.2.9 → 2.2.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- metadata +1 -75
- data/_data/base/footer.yml +0 -32
- data/_data/base/identity.yml +0 -20
- data/_data/base/navbar.yml +0 -74
- data/_data/base/navbar_absolute.yml +0 -74
- data/_data/base/navbar_component.yml +0 -60
- data/_data/download/cards.yml +0 -148
- data/_data/download/navbar.yml +0 -48
- data/_data/people/navbar.yml +0 -34
- data/_includes/base/announcements.html +0 -6
- data/_includes/base/breadcrumbs.html +0 -13
- data/_includes/base/footer.html +0 -61
- data/_includes/base/head.html +0 -17
- data/_includes/base/header.html +0 -17
- data/_includes/base/navbar.html +0 -32
- data/_includes/base/script.html +0 -70
- data/_includes/base/toc-accordion.html +0 -10
- data/_includes/base/toc.html +0 -99
- data/_includes/download/cards-body-convert.html +0 -10
- data/_includes/download/cards-body-doc.html +0 -9
- data/_includes/download/cards-body-eol.html +0 -16
- data/_includes/download/cards-body-screenshot.html +0 -26
- data/_includes/download/cards-body.html +0 -8
- data/_includes/download/cards-footer.html +0 -3
- data/_includes/download/cards-header-convert.html +0 -8
- data/_includes/download/cards-header-doc.html +0 -8
- data/_includes/download/cards-header-eol.html +0 -8
- data/_includes/download/cards-header-screenshot.html +0 -8
- data/_includes/download/cards-header.html +0 -13
- data/_includes/download/cards.html +0 -62
- data/_includes/people/about.html +0 -25
- data/_includes/people/header.html +0 -11
- data/_includes/people/posts.html +0 -35
- data/_includes/people/projects.html +0 -32
- data/_includes/people/pubkeys.html +0 -31
- data/_includes/people/support.html +0 -25
- data/_layouts/base/default.html +0 -31
- data/_layouts/download/cards.html +0 -7
- data/_layouts/people/default.html +0 -20
- data/_sass/base/_centos-lists.scss +0 -132
- data/_sass/base/_centos.scss +0 -80
- data/_sass/base/_variables.scss +0 -24
- 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
- data/assets/icons/favicon.ico +0 -0
- data/assets/icons/favicon.svg +0 -1
- data/assets/img/anaconda-symbolic.svg +0 -1
- data/assets/img/anaconda.svg +0 -1
- data/assets/img/centos-dynamicmsg-logo.svg +0 -1
- data/assets/img/centos-dynamicmsg-type.svg +0 -1
- data/assets/img/centos-dynamicmsg-whitelogo.svg +0 -1
- data/assets/img/centos-dynamicmsg-whitetype.svg +0 -1
- data/assets/img/centos-gdm-whitelogo.svg +0 -1
- data/assets/img/centos-ipa-whiteheader.svg +0 -1
- data/assets/img/centos-logo-2bits.svg +0 -1
- data/assets/img/centos-logo.svg +0 -1
- data/assets/img/centos-message-logo.svg +0 -1
- data/assets/img/centos-motif.png +0 -0
- data/assets/img/centos-poweredby-logo.svg +0 -1
- data/assets/img/centos-symbol-2bits.svg +0 -1
- data/assets/img/centos-symbol.svg +0 -1
- data/assets/img/centos-type.svg +0 -1
- data/assets/img/centos-vertical-logo.svg +0 -1
- data/assets/img/centos-vertical-message-logo.svg +0 -1
- data/assets/img/centos-whitelogo.svg +0 -1
- data/assets/img/download/centos-linux-7-2009-screenshot-n.png +0 -0
- data/assets/img/download/centos-stream-8-screenshot-n.png +0 -0
- data/assets/img/download/centos-stream-9-screenshot-n.png +0 -0
- data/assets/img/download/distribution-release-screenshot-n.png +0 -0
- data/assets/img/download/distribution-release-screenshot-n.svg +0 -128
- data/assets/img/people/YourUsername.svg +0 -64
- data/assets/img/people/screenshot.svg +0 -135
data/_includes/base/footer.html
DELETED
@@ -1,61 +0,0 @@
|
|
1
|
-
{% assign navbar = site.data[site.navbar_data_dirname][site.navbar_data_filename] %}
|
2
|
-
<footer class="footer small bg-dark text-light mt-3">
|
3
|
-
<div class="container">
|
4
|
-
<div class="row bg-primary justify-content-between">
|
5
|
-
{% assign sections = navbar | where: "visible_on", "footer" %}
|
6
|
-
{% assign columns = sections.size %}
|
7
|
-
{% case columns %}
|
8
|
-
{% when 1 %}
|
9
|
-
{% assign column_width = 12 %}
|
10
|
-
{% when 2 %}
|
11
|
-
{% assign column_width = 6 %}
|
12
|
-
{% when 3 %}
|
13
|
-
{% assign column_width = 4 %}
|
14
|
-
{% when 4 %}
|
15
|
-
{% assign column_width = 3 %}
|
16
|
-
{% else %}
|
17
|
-
{% assign column_width = 1 %}
|
18
|
-
{% endcase %}
|
19
|
-
{% for section in sections -%}
|
20
|
-
<div class="col-sm-12 col-lg-{{ column_width }} my-3">
|
21
|
-
<h6 class="fw-bold"><i class="{{ section.icon }}"></i> {{ section.name }}</h6>
|
22
|
-
<ul class="nav flex-column">
|
23
|
-
{% for item in section.menu -%}
|
24
|
-
<li class="nav-item"><a href="{{ site.baseurl }}{{ item.link }}" class="link-light px-0">{{ item.name }}</a></li>
|
25
|
-
{% endfor %}
|
26
|
-
</ul>
|
27
|
-
</div>
|
28
|
-
{% endfor %}
|
29
|
-
</div>
|
30
|
-
|
31
|
-
<div class="row border-top border-secondary border-5">
|
32
|
-
<div class="col-sm-12 col-lg-8">
|
33
|
-
<h4 class="fw-bold pt-3">{{ site.title }}</h4>
|
34
|
-
<p>{{ site.description }}</p>
|
35
|
-
</div>
|
36
|
-
<div class="col-sm-12 col-lg-4 pt-lg-3 d-flex justify-content-sm-start justify-content-lg-end">
|
37
|
-
<ul class="nav list-unstyled">
|
38
|
-
{% for item in site.data.base.footer.social -%}
|
39
|
-
<li class="nav-item">
|
40
|
-
<a class="btn btn-sm fs-5 link-primary" href="{{ site.baseurl }}{{ item.link }}" role="button" aria-label="{{ item.name }}" data-bs-placement="bottom" data-bs-title="{{ item.name }}"><i class="{{ item.icon }}"></i></a>
|
41
|
-
</li>
|
42
|
-
{% endfor %}
|
43
|
-
</ul>
|
44
|
-
</div>
|
45
|
-
</div>
|
46
|
-
|
47
|
-
<div class="row py-3">
|
48
|
-
<div class="col">
|
49
|
-
<span>Copyright ©</span>
|
50
|
-
<span id="copyright_year"></span>
|
51
|
-
<span>{{ site.data.base.footer.copyright.author }}</span>
|
52
|
-
{% for item in site.data.base.footer.copyright.legals -%}
|
53
|
-
<span class="border-start ms-2 ps-2">
|
54
|
-
<a class="link-light" href="{{ site.baseurl }}{{ item.link }}">{{ item.text }}</a>
|
55
|
-
</span>
|
56
|
-
{% endfor %}
|
57
|
-
</div>
|
58
|
-
</div>
|
59
|
-
|
60
|
-
</div>
|
61
|
-
</footer>
|
data/_includes/base/head.html
DELETED
@@ -1,17 +0,0 @@
|
|
1
|
-
<head>
|
2
|
-
<meta charset="utf-8" />
|
3
|
-
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no" />
|
4
|
-
<title>{{ page.title }}</title>
|
5
|
-
<link rel="icon" href="{{ site.baseurl }}/assets/icons/favicon-16.png" sizes="16x16" />
|
6
|
-
<link rel="icon" href="{{ site.baseurl }}/assets/icons/favicon-32.png" sizes="32x32" />
|
7
|
-
<link rel="icon" href="{{ site.baseurl }}/assets/icons/favicon.svg" sizes="any" />
|
8
|
-
<link rel="apple-touch-icon" href="{{ site.baseurl }}/assets/icons/apple-touch-icon.png" sizes="180x180" />
|
9
|
-
<link rel="manifest" href="{{ site.baseurl }}/site.webmanifest" />
|
10
|
-
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700,800,900" />
|
11
|
-
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Overpass+Mono:100,200,300,400,500,600,700,800,900" />
|
12
|
-
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
|
13
|
-
{% if page.with_datatables == true -%}
|
14
|
-
<link rel="stylesheet" href="{{ site.baseurl }}/assets/css/dataTables.bootstrap5.min.css">
|
15
|
-
{% endif -%}
|
16
|
-
<link rel="stylesheet" href="{{ site.baseurl }}/assets/css/stylesheet.min.css" />
|
17
|
-
</head>
|
data/_includes/base/header.html
DELETED
@@ -1,17 +0,0 @@
|
|
1
|
-
<div class="bg-image bg-dark text-light">
|
2
|
-
<div class="container py-5">
|
3
|
-
{% if page.with_announcements and page.with_announcements.size > 0 -%}
|
4
|
-
<div class="row">
|
5
|
-
<div class="col">
|
6
|
-
{% include base/announcements.html %}
|
7
|
-
</div>
|
8
|
-
</div>
|
9
|
-
{% endif -%}
|
10
|
-
<div class="row my-3 justify-content-center">
|
11
|
-
<div class="col-sm-12 col-xl-8">
|
12
|
-
<div class="display-4 fw-bold mb-3">{{ page.title }}</div>
|
13
|
-
<div class="lead">{{ page.title_lead }}</div>
|
14
|
-
</div>
|
15
|
-
</div>
|
16
|
-
</div>
|
17
|
-
</div>
|
data/_includes/base/navbar.html
DELETED
@@ -1,32 +0,0 @@
|
|
1
|
-
{% assign navbar = site.data[site.navbar_data_dirname][site.navbar_data_filename] %}
|
2
|
-
<header class="site-header sticky-top">
|
3
|
-
<nav class="navbar navbar-expand-lg navbar-dark bg-dark shadow">
|
4
|
-
<div class="container">
|
5
|
-
<a class="navbar-brand pt-1" href="{{ site.baseurl }}/"><img role="img" src="{{ site.baseurl }}/{{ site.data.base.identity.logo.navbar }}" height="32" alt="{{ site.title }}" />{% if site.manifestation != "" %}<span class="manifestation border-start border-light ps-3 ms-3 py-2 fs-6">{{ site.manifestation }}</span>{% endif %}</a>
|
6
|
-
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
7
|
-
<span class="navbar-toggler-icon"></span>
|
8
|
-
</button>
|
9
|
-
<div class="collapse navbar-collapse" id="navbarContent">
|
10
|
-
<ul class="navbar-nav mr-auto">
|
11
|
-
{% assign navitems = navbar | where: "visible_on", "navbar" -%}
|
12
|
-
{% for navitem in navitems -%}
|
13
|
-
{% if navitem.menu.size == 0 -%}
|
14
|
-
<li class="nav-item">
|
15
|
-
<a class="nav-link" role="presentation" href="{{ site.baseurl }}{{ navitem.link }}"><i class="{{ navitem.icon }}"></i> {{ navitem.name }}</a>
|
16
|
-
</li>
|
17
|
-
{% else -%}
|
18
|
-
<li class="nav-item dropdown">
|
19
|
-
<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>
|
20
|
-
<ul class="dropdown-menu dropdown-menu-dark shadow" aria-labelledby="navbarDropdown-{{ forloop.index }}">
|
21
|
-
{% for dropdownitem in navitem.menu -%}
|
22
|
-
<li><a class="dropdown-item" role="presentation" href="{{ site.baseurl }}{{ dropdownitem.link }}">{{ dropdownitem.name }}</a></li>
|
23
|
-
{% endfor -%}
|
24
|
-
</ul>
|
25
|
-
</li>
|
26
|
-
{% endif -%}
|
27
|
-
{% endfor -%}
|
28
|
-
</ul>
|
29
|
-
</div>
|
30
|
-
</div>
|
31
|
-
</nav>
|
32
|
-
</header>
|
data/_includes/base/script.html
DELETED
@@ -1,70 +0,0 @@
|
|
1
|
-
<!-- JQuery -->
|
2
|
-
<script src="{{ site.baseurl }}/assets/js/jquery.min.js"></script>
|
3
|
-
|
4
|
-
{% if page.with_datatables == true %}
|
5
|
-
<!-- DataTables -->
|
6
|
-
<script src="{{ site.baseurl }}/assets/js/jquery.dataTables.min.js"></script>
|
7
|
-
<script src="{{ site.baseurl }}/assets/js/dataTables.bootstrap5.min.js"></script>
|
8
|
-
<script>
|
9
|
-
$(document).ready(function () {
|
10
|
-
$("#download-mirror").DataTable();
|
11
|
-
});
|
12
|
-
</script>
|
13
|
-
{% endif %}
|
14
|
-
|
15
|
-
<!-- BackToTop -->
|
16
|
-
<script src="{{ site.baseurl }}/assets/js/vanilla-back-to-top.min.js"></script>
|
17
|
-
<script>
|
18
|
-
addBackToTop({
|
19
|
-
diameter: 56,
|
20
|
-
backgroundColor: "rgb(32, 7, 53)",
|
21
|
-
textColor: "#fff",
|
22
|
-
});
|
23
|
-
</script>
|
24
|
-
|
25
|
-
{% if page.with_clipboard == true %}
|
26
|
-
<!-- Clipboard.JS -->
|
27
|
-
<script src="{{ site.baseurl }}/assets/js/clipboard.min.js"></script>
|
28
|
-
<script>
|
29
|
-
// Initialize ClipboardJS
|
30
|
-
$(".btn-clipboard").on("click", function () {
|
31
|
-
let button = $(this);
|
32
|
-
var copy_id = $(this).attr("id");
|
33
|
-
var clipboard = new ClipboardJS("#" + copy_id);
|
34
|
-
|
35
|
-
clipboard.on("success", function () {
|
36
|
-
const currentLabel = button.html();
|
37
|
-
const tooltip = bootstrap.Tooltip.getInstance("#" + copy_id);
|
38
|
-
const tooltipLabel = button.attr("data-bs-title");
|
39
|
-
|
40
|
-
// Exit label update when already in progress
|
41
|
-
if (button.html() === '<i class="fa-solid fa-clipboard-check"></i>') {
|
42
|
-
return;
|
43
|
-
}
|
44
|
-
|
45
|
-
// Update button label and tooltip
|
46
|
-
button.html('<i class="fa-solid fa-clipboard-check"></i>');
|
47
|
-
tooltip.setContent({ ".tooltip-inner": "Copied!" });
|
48
|
-
|
49
|
-
// Revert button label after 2 seconds
|
50
|
-
setTimeout(function () {
|
51
|
-
button.html(currentLabel);
|
52
|
-
tooltip.setContent({ ".tooltip-inner": tooltipLabel });
|
53
|
-
}, 2000);
|
54
|
-
});
|
55
|
-
});
|
56
|
-
</script>
|
57
|
-
{% endif %}
|
58
|
-
|
59
|
-
<!-- Copyright Year -->
|
60
|
-
<script>
|
61
|
-
document.getElementById("copyright_year").innerHTML = new Date().getFullYear();
|
62
|
-
</script>
|
63
|
-
|
64
|
-
<!-- Bootstrap -->
|
65
|
-
<script src="{{ site.baseurl }}/assets/js/bootstrap.bundle.min.js"></script>
|
66
|
-
<script>
|
67
|
-
// Initialize Tooltips
|
68
|
-
const tooltipTriggerList = document.querySelectorAll('[data-bs-toggle="tooltip"]');
|
69
|
-
const tooltipList = [...tooltipTriggerList].map((tooltipTriggerEl) => new bootstrap.Tooltip(tooltipTriggerEl));
|
70
|
-
</script>
|
@@ -1,10 +0,0 @@
|
|
1
|
-
<div class="accordion" id="pageTocAccordion">
|
2
|
-
<div class="accordion-item shadow-sm">
|
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>
|
5
|
-
</div>
|
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>
|
8
|
-
</div>
|
9
|
-
</div>
|
10
|
-
</div>
|
data/_includes/base/toc.html
DELETED
@@ -1,99 +0,0 @@
|
|
1
|
-
{% capture tocWorkspace %}
|
2
|
-
{% comment %}
|
3
|
-
Version 1.0.10
|
4
|
-
https://github.com/allejo/jekyll-toc
|
5
|
-
|
6
|
-
"...like all things liquid - where there's a will, and ~36 hours to spare, there's usually a/some way" ~jaybe
|
7
|
-
|
8
|
-
Usage:
|
9
|
-
{% include toc.html html=content sanitize=true class="inline_toc" id="my_toc" h_min=2 h_max=3 %}
|
10
|
-
|
11
|
-
Parameters:
|
12
|
-
* html (string) - the HTML of compiled markdown generated by kramdown in Jekyll
|
13
|
-
|
14
|
-
Optional Parameters:
|
15
|
-
* sanitize (bool) : false - when set to true, the headers will be stripped of any HTML in the TOC
|
16
|
-
* class (string) : '' - a CSS class assigned to the TOC
|
17
|
-
* id (string) : '' - an ID to assigned to the TOC
|
18
|
-
* h_min (int) : 1 - the minimum TOC header level to use; any header lower than this value will be ignored
|
19
|
-
* h_max (int) : 6 - the maximum TOC header level to use; any header greater than this value will be ignored
|
20
|
-
* ordered (bool) : false - when set to true, an ordered list will be outputted instead of an unordered list
|
21
|
-
* item_class (string) : '' - add custom class(es) for each list item; has support for '%level%' placeholder, which is the current heading level
|
22
|
-
* baseurl (string) : '' - add a base url to the TOC links for when your TOC is on another page than the actual content
|
23
|
-
* anchor_class (string) : '' - add custom class(es) for each anchor element
|
24
|
-
|
25
|
-
Output:
|
26
|
-
An ordered or unordered list representing the table of contents of a markdown block. This snippet will only
|
27
|
-
generate the table of contents and will NOT output the markdown given to it
|
28
|
-
{% endcomment %}
|
29
|
-
|
30
|
-
{% capture my_toc %}{% endcapture %}
|
31
|
-
{% assign orderedList = include.ordered | default: false %}
|
32
|
-
{% assign minHeader = include.h_min | default: 1 %}
|
33
|
-
{% assign maxHeader = include.h_max | default: 6 %}
|
34
|
-
{% assign nodes = include.html | split: '<h' %}
|
35
|
-
{% assign firstHeader = true %}
|
36
|
-
|
37
|
-
{% capture listModifier %}{% if orderedList %}1.{% else %}-{% endif %}{% endcapture %}
|
38
|
-
|
39
|
-
{% for node in nodes %}
|
40
|
-
{% if node == "" %}
|
41
|
-
{% continue %}
|
42
|
-
{% endif %}
|
43
|
-
|
44
|
-
{% assign headerLevel = node | replace: '"', '' | slice: 0, 1 | times: 1 %}
|
45
|
-
|
46
|
-
{% if headerLevel < minHeader or headerLevel > maxHeader %}
|
47
|
-
{% continue %}
|
48
|
-
{% endif %}
|
49
|
-
|
50
|
-
{% if firstHeader %}
|
51
|
-
{% assign firstHeader = false %}
|
52
|
-
{% assign minHeader = headerLevel %}
|
53
|
-
{% endif %}
|
54
|
-
|
55
|
-
{% assign indentAmount = headerLevel | minus: minHeader %}
|
56
|
-
{% assign _workspace = node | split: '</h' %}
|
57
|
-
|
58
|
-
{% assign _idWorkspace = _workspace[0] | split: 'id="' %}
|
59
|
-
{% assign _idWorkspace = _idWorkspace[1] | split: '"' %}
|
60
|
-
{% assign html_id = _idWorkspace[0] %}
|
61
|
-
|
62
|
-
{% assign _classWorkspace = _workspace[0] | split: 'class="' %}
|
63
|
-
{% assign _classWorkspace = _classWorkspace[1] | split: '"' %}
|
64
|
-
{% assign html_class = _classWorkspace[0] %}
|
65
|
-
|
66
|
-
{% if html_class contains "no_toc" %}
|
67
|
-
{% continue %}
|
68
|
-
{% endif %}
|
69
|
-
|
70
|
-
{% capture _hAttrToStrip %}{{ _workspace[0] | split: '>' | first }}>{% endcapture %}
|
71
|
-
{% assign header = _workspace[0] | replace: _hAttrToStrip, '' %}
|
72
|
-
|
73
|
-
{% assign space = '' %}
|
74
|
-
{% for i in (1..indentAmount) %}
|
75
|
-
{% assign space = space | prepend: ' ' %}
|
76
|
-
{% endfor %}
|
77
|
-
|
78
|
-
{% if include.item_class and include.item_class != blank %}
|
79
|
-
{% capture listItemClass %}{:.{{ include.item_class | replace: '%level%', headerLevel }}}{% endcapture %}
|
80
|
-
{% endif %}
|
81
|
-
|
82
|
-
{% capture heading_body %}{% if include.sanitize %}{{ header | strip_html }}{% else %}{{ header }}{% endif %}{% endcapture %}
|
83
|
-
{% capture my_toc %}{{ my_toc }}
|
84
|
-
{{ space }}{{ listModifier }} {{ listItemClass }} [{{ heading_body | replace: "|", "\|" }}]({% if include.baseurl %}{{ include.baseurl }}{% endif %}#{{ html_id }}){% if include.anchor_class %}{:.{{ include.anchor_class }}}{% endif %}{% endcapture %}
|
85
|
-
{% endfor %}
|
86
|
-
|
87
|
-
{% if include.class and include.class != blank %}
|
88
|
-
{% capture my_toc %}{:.{{ include.class }}}
|
89
|
-
{{ my_toc | lstrip }}{% endcapture %}
|
90
|
-
{% endif %}
|
91
|
-
|
92
|
-
{% if include.id %}
|
93
|
-
{% capture my_toc %}{: #{{ include.id }}}
|
94
|
-
{{ my_toc | lstrip }}{% endcapture %}
|
95
|
-
{% endif %}{% endcapture %}
|
96
|
-
|
97
|
-
{% if my_toc != "" %}
|
98
|
-
{% assign tocWorkspace = '' %}{{ my_toc | markdownify | strip }}
|
99
|
-
{% endif %}
|
@@ -1,10 +0,0 @@
|
|
1
|
-
<tr>
|
2
|
-
<td>
|
3
|
-
{% if row.commands != "" %}
|
4
|
-
<div class="input-group">
|
5
|
-
<textarea id="{{ card.page }}-{{ release[0] }}-key-{{ forloop.index }}" class="form-control font-monospace" placeholder="{{ row.overview }}" aria-label="{{ row.overview }}" aria-describedby="{{ card.page }}-button-{{ forloop.index }}" readonly rows="2">{{ row.commands }}</textarea>
|
6
|
-
<button id="{{ card.page }}-{{ release[0] }}-button-{{ forloop.index }}" class="btn btn-clipboard" type="button" aria-label="Copy to clipboard" data-clipboard-target="#{{ card.page }}-{{ release[0] }}-key-{{ forloop.index }}" data-bs-toggle="tooltip" data-bs-title="Copy to clipboard"><i class="fa-solid fa-clipboard"></i></button>
|
7
|
-
</div>
|
8
|
-
{% endif %}
|
9
|
-
</td>
|
10
|
-
</tr>
|
@@ -1,9 +0,0 @@
|
|
1
|
-
<tr>
|
2
|
-
<td>
|
3
|
-
{% for rows in release %}
|
4
|
-
{% for row in rows.docs %}
|
5
|
-
<a class="btn btn-sm btn-primary{% if row.name == "" %} disabled" aria-disabled="true"{% else %}" href="{{ row.link }}"{% endif %} role="button"><i class="fa-solid fa-file"></i> {{ row.name }}</a>
|
6
|
-
{% endfor %}
|
7
|
-
{% endfor %}
|
8
|
-
</td>
|
9
|
-
</tr>
|
@@ -1,16 +0,0 @@
|
|
1
|
-
<tr>
|
2
|
-
<td>
|
3
|
-
{% if row.overview != "" %}
|
4
|
-
{{ row.overview }}
|
5
|
-
{% endif %}
|
6
|
-
|
7
|
-
{% if row.date != "" %}
|
8
|
-
{{ row.date | date_to_string: "ordinal", "US" }}
|
9
|
-
{% endif %}
|
10
|
-
|
11
|
-
{% if row.url != "" %}
|
12
|
-
<a href="{{ row.url }}"><i class="fas fa-exclamation-circle"></i> Know more</a>
|
13
|
-
{% else %}
|
14
|
-
{% endif %}
|
15
|
-
</td>
|
16
|
-
</tr>
|
@@ -1,26 +0,0 @@
|
|
1
|
-
<tr>
|
2
|
-
<td class="p-0">
|
3
|
-
<div id="carouselScreenshotsIndicators-{{ card.page }}-{{ release[0] }}" class="carousel carousel-dark slide" data-bs-ride="true">
|
4
|
-
<div class="carousel-indicators">
|
5
|
-
{% for row in rows.screenshots %}
|
6
|
-
<button type="button" data-bs-target="#carouselScreenshotsIndicators-{{ card.page }}-{{ release[0] }}" data-bs-slide-to="{{ forloop.index0 }}" {% if forloop.first %}class="active" {% endif %}aria-current="true" aria-label="Screenshot {{ forloop.index }}"></button>
|
7
|
-
{% endfor %}
|
8
|
-
</div>
|
9
|
-
<div class="carousel-inner">
|
10
|
-
{% for row in rows.screenshots %}
|
11
|
-
<div class="carousel-item{% if forloop.first %} active{% endif %}">
|
12
|
-
<img class="d-block w-100" src="{{ site.baseurl }}/assets/img/download/{{ card.page }}-{{ release[0] }}-{{ row.src }}" alt="{{ row.alt }}" />
|
13
|
-
</div>
|
14
|
-
{% endfor %}
|
15
|
-
</div>
|
16
|
-
<button class="carousel-control-prev" type="button" data-bs-target="#carouselScreenshotsIndicators-{{ card.page }}-{{ release[0] }}" data-bs-slide="prev">
|
17
|
-
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
|
18
|
-
<span class="visually-hidden">Previous</span>
|
19
|
-
</button>
|
20
|
-
<button class="carousel-control-next" type="button" data-bs-target="#carouselScreenshotsIndicators-{{ card.page }}-{{ release[0] }}" data-bs-slide="next">
|
21
|
-
<span class="carousel-control-next-icon" aria-hidden="true"></span>
|
22
|
-
<span class="visually-hidden">Next</span>
|
23
|
-
</button>
|
24
|
-
</div>
|
25
|
-
</td>
|
26
|
-
</tr>
|
@@ -1,8 +0,0 @@
|
|
1
|
-
<tr>
|
2
|
-
<td>{{ row.arch }}</td>
|
3
|
-
<td><a class="btn btn-sm btn-primary{% if row.iso] == "" %} disabled" aria-disabled="true"{% else %}" href="{{ row.iso }}"{% endif %} role="button"><i class="fa-solid fa-download"></i> Download</a></td>
|
4
|
-
<td><a class="btn btn-sm btn-primary{% if row.rpm] == "" %} disabled" aria-disabled="true"{% else %}" href="{{ row.rpm }}"{% endif %} role="button"><i class="fa-solid fa-download"></i> Download</a></td>
|
5
|
-
<td><a class="btn btn-sm btn-primary{% if row.cloud] == "" %} disabled" aria-disabled="true"{% else %}" href="{{ row.cloud }}"{% endif %} role="button"><i class="fa-solid fa-download"></i> Download</a></td>
|
6
|
-
<td><a class="btn btn-sm btn-primary{% if row.containers] == "" %} disabled" aria-disabled="true"{% else %}" href="{{ row.containers }}"{% endif %} role="button"><i class="fa-solid fa-download"></i> Download</a></td>
|
7
|
-
<td><a class="btn btn-sm btn-primary{% if row.vagrant] == "" %} disabled" aria-disabled="true"{% else %}" href="{{ row.vagrant }}"{% endif %} role="button"><i class="fa-solid fa-download"></i> Download</a></td>
|
8
|
-
</tr>
|
@@ -1,13 +0,0 @@
|
|
1
|
-
<div class="table-responsive">
|
2
|
-
<table class="table mb-0">
|
3
|
-
<thead class="table-light">
|
4
|
-
<tr>
|
5
|
-
<th scope="col"><i class="fa-solid fa-microchip"></i> Architectures</th>
|
6
|
-
<th scope="col">ISOs</th>
|
7
|
-
<th scope="col">RPMs</th>
|
8
|
-
<th scope="col">Cloud</th>
|
9
|
-
<th scope="col">Containers</th>
|
10
|
-
<th scope="col">Vagrant</th>
|
11
|
-
</tr>
|
12
|
-
</thead>
|
13
|
-
<tbody>
|
@@ -1,62 +0,0 @@
|
|
1
|
-
{% if include.download %}
|
2
|
-
{% assign cards = site.data.centos.download | where: "page", include.download %}
|
3
|
-
{% else %}
|
4
|
-
{% assign cards = site.data.centos.download %}
|
5
|
-
{% endif %}
|
6
|
-
|
7
|
-
{% for card in cards %}
|
8
|
-
<div class="mb-5">
|
9
|
-
<h1>{{ card.name }}</h1>
|
10
|
-
<p>{{ card.description }}</p>
|
11
|
-
<ul class="nav nav-pills my-3 justify-content-start" id="pills-{{ card.page }}-tab" role="tablist">
|
12
|
-
{% for release in card.releases %}
|
13
|
-
<li class="nav-item" role="presentation">
|
14
|
-
<button class="nav-link{% if forloop.first %} active{% endif %} fw-bold" id="pills-{{ card.page }}-release-{{ forloop.index }}-tab" data-bs-toggle="tab" data-bs-target="#pills-{{ card.page }}-release-{{ forloop.index }}" type="button" role="tab" aria-controls="pills-{{ forloop.index }}-release-{{ release[0] }}-tab" {% if forloop.first %} aria-selected="true" {% endif %}>{{ release[0] }}</button>
|
15
|
-
</li>
|
16
|
-
{% endfor %}
|
17
|
-
</ul>
|
18
|
-
|
19
|
-
<div class="tab-content mb-3" id="pills-{{ card.page }}-tabContent">
|
20
|
-
{% for release in card.releases %}
|
21
|
-
<div class="tab-pane fade {% if forloop.first %} show active{% endif %}" id="pills-{{ card.page }}-release-{{ forloop.index }}" role="tabpanel" aria-labelledby="pills-{{ card.page }}-release-{{ forloop.index }}-tab" tabindex="{{ forloop.index }}">
|
22
|
-
{% for rows in release %}
|
23
|
-
{% if rows.screenshots.size > 0 %}
|
24
|
-
{% include download/cards-header-screenshot.html %}
|
25
|
-
{% include download/cards-body-screenshot.html %}
|
26
|
-
{% include download/cards-footer.html %}
|
27
|
-
{% endif %}
|
28
|
-
{% endfor %}
|
29
|
-
|
30
|
-
|
31
|
-
{% include download/cards-header.html %}
|
32
|
-
{% for rows in release %}
|
33
|
-
{% for row in rows.downloads %}
|
34
|
-
{% include download/cards-body.html %}
|
35
|
-
{% endfor %}
|
36
|
-
{% endfor %}
|
37
|
-
{% include download/cards-footer.html %}
|
38
|
-
|
39
|
-
{% include download/cards-header-doc.html %}
|
40
|
-
{% include download/cards-body-doc.html %}
|
41
|
-
{% include download/cards-footer.html %}
|
42
|
-
|
43
|
-
{% include download/cards-header-eol.html %}
|
44
|
-
{% for rows in release %}
|
45
|
-
{% for row in rows.eol %}
|
46
|
-
{% include download/cards-body-eol.html %}
|
47
|
-
{% endfor %}
|
48
|
-
{% endfor %}
|
49
|
-
{% include download/cards-footer.html %}
|
50
|
-
|
51
|
-
{% for rows in release %}
|
52
|
-
{% for row in rows.convert %}
|
53
|
-
{% include download/cards-header-convert.html %}
|
54
|
-
{% include download/cards-body-convert.html %}
|
55
|
-
{% include download/cards-footer.html %}
|
56
|
-
{% endfor %}
|
57
|
-
{% endfor %}
|
58
|
-
</div>
|
59
|
-
{% endfor %}
|
60
|
-
</div>
|
61
|
-
</div>
|
62
|
-
{% endfor %}
|
data/_includes/people/about.html
DELETED
@@ -1,25 +0,0 @@
|
|
1
|
-
{% if page.about.section.visible == true %}
|
2
|
-
<div class="container py-5 text-center border-top{% if page.about.section.highlight == true %} bg-light-radial-gradient{% endif %}">
|
3
|
-
<div class="row">
|
4
|
-
<div class="col">
|
5
|
-
{% if page.about.section.icon %}
|
6
|
-
<div class="display-6"><i class="{{ page.about.section.icon }}"></i></div>
|
7
|
-
{% endif %} {% if page.about.section.name %}
|
8
|
-
<div class="display-6 fw-bold">{{ page.about.section.name }}</div>
|
9
|
-
{% endif %} {% if page.about.section.preamble %}
|
10
|
-
<p>{{ page.about.section.preamble }}</p>
|
11
|
-
{% endif %}
|
12
|
-
</div>
|
13
|
-
</div>
|
14
|
-
|
15
|
-
<div class="row mt-3">
|
16
|
-
<div class="col">
|
17
|
-
{% if page.about.content.size > 0 %} {% for p in page.about.content %}
|
18
|
-
<p>{{ p }}</p>
|
19
|
-
{% endfor %} {% else %}
|
20
|
-
<div class="alert alert-light border shadow" role="alert">Nothing posted here, yet.</div>
|
21
|
-
{% endif %}
|
22
|
-
</div>
|
23
|
-
</div>
|
24
|
-
</div>
|
25
|
-
{% endif %}
|
@@ -1,11 +0,0 @@
|
|
1
|
-
<div class="bg-dark bg-image">
|
2
|
-
<div class="container p-5 text-white text-center">
|
3
|
-
<div class="row">
|
4
|
-
<div class="col">
|
5
|
-
<img class="rounded-circle shadow img-fluid" width="250" src="{{ site.baseurl }}/assets/img/people/{{ page.username }}.svg" alt="{{ page.username }}" />
|
6
|
-
<h1 class="display-1 fw-bold">{{ page.username }}</h1>
|
7
|
-
<p class="lead">{{ page.fullname }}</p>
|
8
|
-
</div>
|
9
|
-
</div>
|
10
|
-
</div>
|
11
|
-
</div>
|
data/_includes/people/posts.html
DELETED
@@ -1,35 +0,0 @@
|
|
1
|
-
{% assign username = page.username %} {% assign entries = site.posts | where: "author", username %} {% assign limit = page.posts.section.limit %} {% if page.posts.section.visible == true %}
|
2
|
-
<div class="container py-5 text-center border-top{% if page.posts.section.highlight == true %} bg-light-radial-gradient{% endif %}">
|
3
|
-
<div class="row">
|
4
|
-
<div class="col">
|
5
|
-
{% if page.posts.section.icon %}
|
6
|
-
<div class="display-6"><i class="{{ page.posts.section.icon }}"></i></div>
|
7
|
-
{% endif %} {% if page.posts.section.name %}
|
8
|
-
<div class="display-6 fw-bold">{{ page.posts.section.name }}</div>
|
9
|
-
{% endif %} {% if page.posts.section.preamble %}
|
10
|
-
<p>{{ page.posts.section.preamble }}</p>
|
11
|
-
{% endif %}
|
12
|
-
</div>
|
13
|
-
</div>
|
14
|
-
|
15
|
-
<div class="row">
|
16
|
-
<div class="col">
|
17
|
-
{% if entries.size > 0 %}
|
18
|
-
<div class="list-group shadow text-start">
|
19
|
-
{% for i in entries limit: limit %} {%- assign date_format = site.date_format | default: "%b %-d, %Y" -%}
|
20
|
-
<a href="{{ site.baseurl }}{{ i.url }}" class="list-group-item list-group-item-action">
|
21
|
-
<div class="d-flex gap-2w-100 justify-content-between">
|
22
|
-
<h5 class="pt-0 mt-1 mb-1 fw-bold text-primary">{{ i.title }}</h5>
|
23
|
-
<small class="text-muted">{{ i.date | date: date_format }}</small>
|
24
|
-
</div>
|
25
|
-
<p class="mb-1">{{ i.excerpt | strip_html | slice: 0,150 }}...</p>
|
26
|
-
</a>
|
27
|
-
{% endfor %}
|
28
|
-
</div>
|
29
|
-
{% else %}
|
30
|
-
<div class="alert alert-light border shadow" role="alert">Nothing posted here, yet.</div>
|
31
|
-
{% endif %}
|
32
|
-
</div>
|
33
|
-
</div>
|
34
|
-
</div>
|
35
|
-
{% endif %}
|
@@ -1,32 +0,0 @@
|
|
1
|
-
{% assign username = page.username %} {% assign projects = page.projects.content %} {% assign limit = page.posts.section.limit %} {% if page.projects.section.visible == true %}
|
2
|
-
<div class="container py-5 text-center border-top{% if page.projects.section.highlight == true %} bg-light-radial-gradient{% endif %}">
|
3
|
-
<div class="row">
|
4
|
-
<div class="col">
|
5
|
-
{% if page.projects.section.icon %}
|
6
|
-
<div class="display-6"><i class="{{ page.projects.section.icon }}"></i></div>
|
7
|
-
{% endif %} {% if page.projects.section.name %}
|
8
|
-
<div class="display-6 fw-bold">{{ page.projects.section.name }}</div>
|
9
|
-
{% endif %} {% if page.projects.section.preamble %}
|
10
|
-
<p>{{ page.projects.section.preamble }}</p>
|
11
|
-
{% endif %}
|
12
|
-
</div>
|
13
|
-
</div>
|
14
|
-
|
15
|
-
<div class="row">
|
16
|
-
<div class="col">
|
17
|
-
{% if projects.size > 0 %}
|
18
|
-
<div class="list-group shadow text-start">
|
19
|
-
{% for i in projects limit: limit %}
|
20
|
-
<a href="{{ site.baseurl }}{{ i.link }}" class="list-group-item list-group-item-action">
|
21
|
-
<div class="fw-bold">{{ i.name }}</div>
|
22
|
-
<small class="text-muted">{{ i.description }}</small>
|
23
|
-
</a>
|
24
|
-
{% endfor %}
|
25
|
-
</div>
|
26
|
-
{% else %}
|
27
|
-
<div class="alert alert-light border shadow" role="alert">Nothing posted here, yet.</div>
|
28
|
-
{% endif %}
|
29
|
-
</div>
|
30
|
-
</div>
|
31
|
-
</div>
|
32
|
-
{% endif %}
|