jekyll-theme-centos 2.51.1.beta.46 → 2.51.1.beta.48
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_data/base/languages.yml +186 -0
- data/_data/download/cards.yml +255 -94
- data/_data/download/navbar.yml +5 -0
- data/_data/people/navbar.yml +6 -0
- data/_data/sponsors/carousel.yml +38 -0
- data/_data/sponsors/navbar.yml +6 -0
- data/_includes/base/breakingnews.html +1 -1
- data/_includes/base/languages.html +35 -0
- data/_includes/base/script.html +1 -5
- data/_includes/download/cards-body-commands.html +7 -0
- data/_includes/download/cards-body-documentation.html +11 -0
- data/_includes/download/cards-body-mirrors.html +8 -0
- data/_includes/download/cards-body-screenshots.html +32 -0
- data/_includes/download/cards-header-commands.html +8 -0
- data/_includes/download/cards-header-documentation.html +8 -0
- data/_includes/download/cards-header-eol.html +1 -1
- data/_includes/download/cards-header-mirrors.html +13 -0
- data/_includes/download/cards-header-screenshots.html +8 -0
- data/_includes/download/cards.html +105 -47
- data/_includes/people/about.html +25 -0
- data/_includes/people/header.html +11 -0
- data/_includes/people/posts.html +35 -0
- data/_includes/people/projects.html +32 -0
- data/_includes/people/pubkeys.html +31 -0
- data/_includes/people/support.html +25 -0
- data/_includes/sponsors/cards.html +11 -0
- data/_includes/sponsors/carousel.html +27 -0
- data/_layouts/base/default.html +24 -21
- data/_layouts/download/default.html +7 -0
- data/_layouts/people/default.html +47 -0
- data/_sass/base/_customization.scss +5 -3
- data/assets/img/base/{screenshot-base-default-layout.svg → default-layout.svg} +40 -65
- data/assets/img/base/default-layout.webp +0 -0
- data/assets/img/download/distribution-release-screenshot-1.png +0 -0
- data/assets/img/download/distribution-release-screenshot-2.png +0 -0
- data/assets/img/download/distribution-release-screenshot-3.png +0 -0
- data/assets/img/download/distribution-release-screenshot-n.svg +17 -11
- data/assets/img/download/download.svg +421 -0
- data/assets/img/download/fig-the-downloads-cards-presentation-template.png +0 -0
- data/assets/img/people/YourUsername.svg +64 -0
- data/assets/img/people/screenshot.svg +135 -0
- data/assets/img/sponsors/screenshot-sponsors-cards-layout.png +0 -0
- data/assets/img/sponsors/screenshot-sponsors-cards.png +0 -0
- data/assets/img/sponsors/screenshot-sponsors-carousel.png +0 -0
- data/assets/img/sponsors/screenshot-sponsors-default-layout.png +0 -0
- data/assets/img/sponsors/screenshot-sponsors-logo.png +0 -0
- data/assets/img/sponsors/sponsor-logo-1.png +0 -0
- data/assets/img/sponsors/sponsor-logo-2.png +0 -0
- data/assets/img/sponsors/sponsor-logo-3.png +0 -0
- data/assets/img/sponsors/sponsor-logo-4.png +0 -0
- data/assets/img/sponsors/sponsor-logo-5.png +0 -0
- data/assets/img/sponsors/sponsor-logo-6.png +0 -0
- data/assets/img/sponsors/sponsor-logo-7.png +0 -0
- data/assets/img/sponsors/sponsor-logo-8.png +0 -0
- data/assets/img/sponsors/sponsors-logo.svg +563 -0
- metadata +51 -7
- data/assets/img/base/screenshot-base-default-layout.png +0 -0
- /data/assets/img/base/{the-site-navigation-flow.svg → site-navigation-flow.svg} +0 -0
- /data/assets/img/base/{the-site-navigation-flow.webp → site-navigation-flow.webp} +0 -0
@@ -1,4 +1,4 @@
|
|
1
|
-
<div class="alert alert-{{ include.color | default: 'primary') }} rounded-0 m-0 border-
|
1
|
+
<div class="alert alert-{{ include.color | default: 'primary') }} rounded-0 m-0 border-start-0 border-end-0 shadow" role="alert">
|
2
2
|
<div class="container d-flex justify-content-between align-items-center">
|
3
3
|
<div class="me-3">
|
4
4
|
<div class="h5 mb-0"><i class="{{ include.icon | default: 'fa-solid fa-bullhorn' }}"></i></div>
|
@@ -0,0 +1,35 @@
|
|
1
|
+
{% assign locales = page.with_locales.size | plus: 1 %}
|
2
|
+
{% capture modal_title %}
|
3
|
+
<i class="fa-solid fa-language"></i> Languages <span class="badge text-bg-secondary">{{ locales }}</span>
|
4
|
+
{% endcapture %}
|
5
|
+
|
6
|
+
{% assign modal_id = include.id | default: 0 %}
|
7
|
+
{% assign modal_preamble = include.preamble | default: "This page is available in the following languages:"%}
|
8
|
+
{% assign modal_footer = include.footer | default: "" %}
|
9
|
+
|
10
|
+
<button type="button" class="btn btn-sm btn-primary" data-bs-toggle="modal" data-bs-target="#languageModal-{{ modal_id }}">
|
11
|
+
{{ modal_title }}
|
12
|
+
</button>
|
13
|
+
|
14
|
+
<div class="modal fade" id="languageModal-{{ modal_id }}" tabindex="-1" aria-labelledby="languageModalLabel-{{ modal_id }}" aria-hidden="true">
|
15
|
+
<div class="modal-dialog">
|
16
|
+
<div class="modal-content">
|
17
|
+
<div class="modal-header">
|
18
|
+
<h1 class="modal-title fs-4" id="languageModalLabel-{{ modal_id }}">{{ modal_title }}</h1>
|
19
|
+
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
20
|
+
</div>
|
21
|
+
<div class="modal-body">
|
22
|
+
<p>{{ modal_preamble }}</p>
|
23
|
+
<a href="{{ site.baseurl }}{{ page.url }}" role="button" class="btn btn-primary">{{ site.data.base.languages["en"] }}</a>
|
24
|
+
{% for locale in page.with_locales %}
|
25
|
+
<a href="{{ site.baseurl }}/{{ locale }}{{ page.url }}" role="button" class="btn btn-primary">{{ site.data.base.languages[locale] }}</a>
|
26
|
+
{% endfor %}
|
27
|
+
</div>
|
28
|
+
{% if modal_footer != "" %}
|
29
|
+
<div class="modal-footer">
|
30
|
+
<p class="small">{{ modal_footer }}</p>
|
31
|
+
</div>
|
32
|
+
{% endif %}
|
33
|
+
</div>
|
34
|
+
</div>
|
35
|
+
</div>
|
data/_includes/base/script.html
CHANGED
@@ -4,11 +4,7 @@
|
|
4
4
|
<script src="https://unpkg.com/highlightjs-copy@1.0.3/dist/highlightjs-copy.min.js"></script>
|
5
5
|
<script>
|
6
6
|
document.querySelectorAll('.content code').forEach(el=>el.classList.add('hljs'));
|
7
|
-
hljs.addPlugin(
|
8
|
-
new CopyButtonPlugin({
|
9
|
-
callback: (text, el) => console.log("Copied!", text),
|
10
|
-
})
|
11
|
-
);
|
7
|
+
hljs.addPlugin(new CopyButtonPlugin());
|
12
8
|
hljs.highlightAll();
|
13
9
|
</script>
|
14
10
|
{% endif -%}
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<tr>
|
2
|
+
<td>
|
3
|
+
{% for rows in release %}
|
4
|
+
{% for row in rows.documentation %}
|
5
|
+
{% if row.title != "" %}
|
6
|
+
<a class="btn btn-primary" href="{{ row.link }}" role="button"><i class="fa-solid fa-up-right-from-square"></i> {{ row.title }}</a>
|
7
|
+
{% endif %}
|
8
|
+
{% endfor %}
|
9
|
+
{% endfor %}
|
10
|
+
</td>
|
11
|
+
</tr>
|
@@ -0,0 +1,8 @@
|
|
1
|
+
<tr>
|
2
|
+
<td>{{ row.architecture }}</td>
|
3
|
+
<td>{% if row.iso] != "" %}<a class="btn btn-primary" href="{{ row.iso }}" role="button"><i class="fa-solid fa-up-right-from-square"></i> Mirrors</a>{% endif %}</td>
|
4
|
+
<td>{% if row.rpm] != "" %}<a class="btn btn-primary" href="{{ row.rpm }}" role="button"><i class="fa-solid fa-up-right-from-square"></i> Mirrors</a>{% endif %}</td>
|
5
|
+
<td>{% if row.cloud] != "" %}<a class="btn btn-primary" href="{{ row.cloud }}" role="button"><i class="fa-solid fa-up-right-from-square"></i> Images</a>{% endif %}</td>
|
6
|
+
<td>{% if row.containers] != "" %}<a class="btn btn-primary" href="{{ row.containers }}" role="button"><i class="fa-solid fa-up-right-from-square"></i> Images</a>{% endif %}</td>
|
7
|
+
<td>{% if row.vagrant] != "" %}<a class="btn btn-primary" href="{{ row.vagrant }}" role="button"><i class="fa-solid fa-up-right-from-square"></i> Boxes</a>{% endif %}</td>
|
8
|
+
</tr>
|
@@ -0,0 +1,32 @@
|
|
1
|
+
<tr>
|
2
|
+
<td class="p-0">
|
3
|
+
<div id="carouselScreenshotsIndicators-{{ release_id }}" class="carousel carousel-dark slide" data-bs-ride="true">
|
4
|
+
<div class="carousel-indicators">
|
5
|
+
{% for row in rows.screenshots %}
|
6
|
+
<button
|
7
|
+
{% if forloop.first %}class="active"{% endif %}
|
8
|
+
type="button"
|
9
|
+
data-bs-target="#carouselScreenshotsIndicators-{{ release_id }}"
|
10
|
+
data-bs-slide-to="{{ forloop.index0 }}"
|
11
|
+
aria-current="true"
|
12
|
+
aria-label="Screenshot {{ forloop.index }}"></button>
|
13
|
+
{% endfor %}
|
14
|
+
</div>
|
15
|
+
<div class="carousel-inner">
|
16
|
+
{% for row in rows.screenshots %}
|
17
|
+
<div class="carousel-item{% if forloop.first %} active{% endif %}">
|
18
|
+
<img class="d-block w-100" src="{{site.url }}{{ site.baseurl }}/assets/img/download/{{ row.src }}" alt="{{ row.alt }}" />
|
19
|
+
</div>
|
20
|
+
{% endfor %}
|
21
|
+
</div>
|
22
|
+
<button class="carousel-control-prev" type="button" data-bs-target="#carouselScreenshotsIndicators-{{ release_id }}" data-bs-slide="prev">
|
23
|
+
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
|
24
|
+
<span class="visually-hidden">Previous</span>
|
25
|
+
</button>
|
26
|
+
<button class="carousel-control-next" type="button" data-bs-target="#carouselScreenshotsIndicators-{{ release_id }}" data-bs-slide="next">
|
27
|
+
<span class="carousel-control-next-icon" aria-hidden="true"></span>
|
28
|
+
<span class="visually-hidden">Next</span>
|
29
|
+
</button>
|
30
|
+
</div>
|
31
|
+
</td>
|
32
|
+
</tr>
|
@@ -0,0 +1,13 @@
|
|
1
|
+
<div class="table-responsive">
|
2
|
+
<table class="table table-bordered mb-0">
|
3
|
+
<thead class="table-light">
|
4
|
+
<tr>
|
5
|
+
<th scope="col"><i class="fa-solid fa-microchip"></i> Architecture</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 +1,120 @@
|
|
1
|
-
{% if include.
|
2
|
-
{% assign cards =
|
1
|
+
{% if include.data and include.data != "" %}
|
2
|
+
{% assign cards = include.data %}
|
3
3
|
{% else %}
|
4
|
-
{% assign cards = site.data.
|
4
|
+
{% assign cards = site.data.download.cards %}
|
5
5
|
{% endif %}
|
6
6
|
|
7
|
+
|
7
8
|
{% 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
9
|
|
19
|
-
|
20
|
-
{%
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
{% include download/cards-header-screenshot.html %}
|
25
|
-
{% include download/cards-body-screenshot.html %}
|
26
|
-
{% include download/cards-footer.html %}
|
27
|
-
{% endif %}
|
28
|
-
{% endfor %}
|
10
|
+
{% if include.title and include.title != "" %}
|
11
|
+
{% if include.title != card.title %}
|
12
|
+
{% continue %}
|
13
|
+
{% endif %}
|
14
|
+
{% endif %}
|
29
15
|
|
16
|
+
<div class="mb-5">
|
17
|
+
{% if include.with_title %}
|
18
|
+
<div class="h2">{{ card.title }}</div>
|
19
|
+
{% endif %}
|
30
20
|
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
{% include download/cards-body.html %}
|
35
|
-
{% endfor %}
|
36
|
-
{% endfor %}
|
37
|
-
{% include download/cards-footer.html %}
|
21
|
+
{% if include.with_description %}
|
22
|
+
<p>{{ card.description }}</p>
|
23
|
+
{% endif %}
|
38
24
|
|
39
|
-
|
40
|
-
{
|
41
|
-
{
|
25
|
+
{% if include.id and include.id != "" %}
|
26
|
+
{%- capture card_id -%}
|
27
|
+
{{ include.id }}-{{ card.title | downcase | replace: " ", "-" }}
|
28
|
+
{%- endcapture %}
|
29
|
+
{% else %}
|
30
|
+
{%- capture card_id -%}
|
31
|
+
DownloadsCard-1-{{ card.title | downcase | replace: " ", "-" }}
|
32
|
+
{%- endcapture %}
|
33
|
+
{% endif %}
|
42
34
|
|
43
|
-
|
44
|
-
|
45
|
-
{% for
|
46
|
-
|
47
|
-
|
35
|
+
{% if include.with_releases %}
|
36
|
+
<ul class="nav nav-pills my-3 justify-content-start" id="{{ card_id }}-pills-tab" role="tablist">
|
37
|
+
{% for release in card.releases %}
|
38
|
+
<li class="nav-item" role="presentation">
|
39
|
+
<button class="nav-link{% if forloop.first %} active{% endif %} fw-bold"
|
40
|
+
id="{{ card_id }}-pills-tab{{ forloop.index }}"
|
41
|
+
data-bs-toggle="tab"
|
42
|
+
data-bs-target="#{{ card_id }}-pills{{ forloop.index }}"
|
43
|
+
type="button"
|
44
|
+
role="tab"
|
45
|
+
aria-controls="{{ card_id }}-pills-tab{{ forloop.index }}"
|
46
|
+
{% if forloop.first %}aria-selected="true"{% endif %}
|
47
|
+
>{{ release[0] }}</button>
|
48
|
+
</li>
|
48
49
|
{% endfor %}
|
49
|
-
|
50
|
+
</ul>
|
50
51
|
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
52
|
+
<div class="tab-content mb-3" id="{{ card_id }}-pills-tabContent">
|
53
|
+
{% for release in card.releases %}
|
54
|
+
|
55
|
+
{%- capture release_id -%}
|
56
|
+
{{ card_id }}-pills{{ forloop.index }}
|
57
|
+
{%- endcapture %}
|
58
|
+
|
59
|
+
{%- capture tab_id -%}
|
60
|
+
{{ card_id }}-pills-tab{{ forloop.index }}
|
61
|
+
{%- endcapture %}
|
62
|
+
|
63
|
+
<div class="tab-pane fade {% if forloop.first %} show active{% endif %}"
|
64
|
+
id="{{ release_id }}"
|
65
|
+
role="tabpanel"
|
66
|
+
aria-labelledby="{{ tab_id }}"
|
67
|
+
tabindex="{{ forloop.index }}">
|
68
|
+
|
69
|
+
{% if include.with_screenshots %}
|
70
|
+
{% for rows in release %}
|
71
|
+
{% if rows.screenshots.size > 0 %}
|
72
|
+
{% include download/cards-header-screenshots.html %}
|
73
|
+
{% include download/cards-body-screenshots.html %}
|
74
|
+
{% include download/cards-footer.html %}
|
75
|
+
{% endif %}
|
76
|
+
{% endfor %}
|
77
|
+
{% endif %}
|
78
|
+
|
79
|
+
{% if include.with_mirrors %}
|
80
|
+
{% include download/cards-header-mirrors.html %}
|
81
|
+
{% for rows in release %}
|
82
|
+
{% for row in rows.mirrors %}
|
83
|
+
{% include download/cards-body-mirrors.html %}
|
84
|
+
{% endfor %}
|
85
|
+
{% endfor %}
|
86
|
+
{% include download/cards-footer.html %}
|
87
|
+
{% endif %}
|
88
|
+
|
89
|
+
{% if include.with_documentation %}
|
90
|
+
{% include download/cards-header-documentation.html %}
|
91
|
+
{% include download/cards-body-documentation.html %}
|
92
|
+
{% include download/cards-footer.html %}
|
93
|
+
{% endif %}
|
94
|
+
|
95
|
+
{% if include.with_eol %}
|
96
|
+
{% include download/cards-header-eol.html %}
|
97
|
+
{% for rows in release %}
|
98
|
+
{% for row in rows.eol %}
|
99
|
+
{% include download/cards-body-eol.html %}
|
100
|
+
{% endfor %}
|
101
|
+
{% endfor %}
|
102
|
+
{% include download/cards-footer.html %}
|
103
|
+
{% endif %}
|
104
|
+
|
105
|
+
{% if include.with_commands %}
|
106
|
+
{% for rows in release %}
|
107
|
+
{% for row in rows.commands %}
|
108
|
+
{% include download/cards-header-commands.html %}
|
109
|
+
{% include download/cards-body-commands.html %}
|
110
|
+
{% include download/cards-footer.html %}
|
111
|
+
{% endfor %}
|
112
|
+
{% endfor %}
|
113
|
+
{% endif %}
|
114
|
+
</div>
|
57
115
|
{% endfor %}
|
58
116
|
</div>
|
59
|
-
{%
|
117
|
+
{% endif %}
|
118
|
+
|
60
119
|
</div>
|
61
|
-
</div>
|
62
120
|
{% endfor %}
|
@@ -0,0 +1,25 @@
|
|
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 %}
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<div class="bg-dark bg-image">
|
2
|
+
<div class="container p-5 text-white text-center">
|
3
|
+
<div class="row pt-5">
|
4
|
+
<div class="col pt-5">
|
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>
|
@@ -0,0 +1,35 @@
|
|
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 %}
|
@@ -0,0 +1,32 @@
|
|
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 %}
|
@@ -0,0 +1,31 @@
|
|
1
|
+
{% if page.pubkeys.section.visible == true %}
|
2
|
+
<div class="container py-5 text-center border-top{% if page.pubkeys.section.highlight == true %} bg-light-radial-gradient{% endif %}">
|
3
|
+
<div class="row">
|
4
|
+
<div class="col">
|
5
|
+
{% if page.pubkeys.section.icon %}
|
6
|
+
<div class="display-6"><i class="{{ page.pubkeys.section.icon }}"></i></div>
|
7
|
+
{% endif %} {% if page.pubkeys.section.name %}
|
8
|
+
<div class="display-6 fw-bold">{{ page.pubkeys.section.name }}</div>
|
9
|
+
{% endif %} {% if page.pubkeys.section.preamble %}
|
10
|
+
<p>{{ page.pubkeys.section.preamble }}</p>
|
11
|
+
{% endif %}
|
12
|
+
</div>
|
13
|
+
</div>
|
14
|
+
|
15
|
+
{% if page.pubkeys.content.size > 0 %}
|
16
|
+
<div class="row">
|
17
|
+
{% for pubkey in page.pubkeys.content %}
|
18
|
+
<div class="col-sm-6 px-5">
|
19
|
+
<p class="fw-bold">{{ pubkey.name }}</p>
|
20
|
+
<div class="input-group">
|
21
|
+
<textarea id="{{ pubkey.name }}-key-{{ forloop.index }}" class="form-control font-monospace" placeholder="User's key" aria-label="User's key" aria-describedby="{{ pubkey.name }}-button-{{ forloop.index }}" readonly rows="5">{{ pubkey.content }}</textarea>
|
22
|
+
<button id="{{ pubkey.name }}-button-{{ forloop.index }}" class="btn btn-clipboard" type="button" aria-label="Copy to clipboard" data-clipboard-target="#{{ pubkey.name }}-key-{{ forloop.index }}" data-bs-toggle="tooltip" data-bs-title="Copy to clipboard"><i class="fa-solid fa-clipboard"></i></button>
|
23
|
+
</div>
|
24
|
+
</div>
|
25
|
+
{% endfor %}
|
26
|
+
</div>
|
27
|
+
{% else %}
|
28
|
+
<div class="alert alert-light border shadow" role="alert">Nothing posted here, yet.</div>
|
29
|
+
{% endif %}
|
30
|
+
</div>
|
31
|
+
{% endif %}
|
@@ -0,0 +1,25 @@
|
|
1
|
+
{% if page.support.section.visible == true %}
|
2
|
+
<div class="container py-5 text-center border-top{% if page.support.section.highlight == true %} bg-light-radial-gradient{% endif %}">
|
3
|
+
<div class="row">
|
4
|
+
<div class="col">
|
5
|
+
{% if page.support.section.icon %}
|
6
|
+
<div class="display-6"><i class="{{ page.support.section.icon }}"></i></div>
|
7
|
+
{% endif %} {% if page.support.section.name %}
|
8
|
+
<div class="display-6 fw-bold">{{ page.support.section.name }}</div>
|
9
|
+
{% endif %} {% if page.support.section.preamble %}
|
10
|
+
<p>{{ page.support.section.preamble }}</p>
|
11
|
+
{% endif %}
|
12
|
+
</div>
|
13
|
+
</div>
|
14
|
+
|
15
|
+
{% if page.support.content.size > 0 %}
|
16
|
+
<div class="row">
|
17
|
+
{% for support in page.support.content %}
|
18
|
+
<div class="col">{{ support }}</div>
|
19
|
+
{% endfor %}
|
20
|
+
</div>
|
21
|
+
{% else %}
|
22
|
+
<div class="alert alert-light border shadow" role="alert">Nothing posted here, yet.</div>
|
23
|
+
{% endif %}
|
24
|
+
</div>
|
25
|
+
{% endif %}
|
@@ -0,0 +1,11 @@
|
|
1
|
+
{% assign members = site.data.sponsors.carousel.members %}
|
2
|
+
|
3
|
+
<div class="d-flex flex-wrap justify-content-between my-3 border-top border-bottom border-top-1 border-bottom-1">
|
4
|
+
{% for member in members %}
|
5
|
+
{% if member.is_active != false %}
|
6
|
+
<div class="card border-light m-2" style="width: 242px;">
|
7
|
+
<a href="{{ member.url }}"><img src="{{ site.url }}{{ site.baseurl }}/assets/img/sponsors/{{ member.image }}" class="card-img-top" alt="{{ member.name }}"></a>
|
8
|
+
</div>
|
9
|
+
{% endif %}
|
10
|
+
{% endfor %}
|
11
|
+
</div>
|
@@ -0,0 +1,27 @@
|
|
1
|
+
{% assign carousel = site.data.sponsors.carousel %}
|
2
|
+
<div id="{{ include.id | default: 'sponsorsCarousel' }}" class="row pt-3 text-body-emphasis">
|
3
|
+
|
4
|
+
<div class="col-sm-12 col-xl-7 mb-3">
|
5
|
+
{% if include.with_title != false %}
|
6
|
+
<div class="h4"><i class="{{ carousel.icon }}"></i> {{ carousel.title }}</div>
|
7
|
+
{% endif %}
|
8
|
+
<div>{{ carousel.message }}</div>
|
9
|
+
</div>
|
10
|
+
|
11
|
+
<div class="col-sm-12 col-xl-5 mb-3">
|
12
|
+
<div class="carousel slide carousel-fade" data-bs-ride="carousel">
|
13
|
+
<div class="carousel-inner">
|
14
|
+
{% for member in carousel.members %}
|
15
|
+
{% if member.is_active != false %}
|
16
|
+
<div class="carousel-item{% if forloop.first %} active{% endif %}">
|
17
|
+
<div class="card p-3 text-center border-0">
|
18
|
+
<a href="{{ member.url }}"><img src="{{ site.url }}{{ site.baseurl }}/assets/img/sponsors/{{ member.image }}" class="card-img-top" style="height: 60px; width: auto;" alt="{{ member.name }}"></a>
|
19
|
+
</div>
|
20
|
+
</div>
|
21
|
+
{% endif %}
|
22
|
+
{% endfor %}
|
23
|
+
</div>
|
24
|
+
</div>
|
25
|
+
</div>
|
26
|
+
|
27
|
+
</div>
|
data/_layouts/base/default.html
CHANGED
@@ -32,7 +32,7 @@
|
|
32
32
|
</div>
|
33
33
|
{% endif %}
|
34
34
|
|
35
|
-
<main class="container bg-body py-
|
35
|
+
<main class="container bg-body py-4">
|
36
36
|
|
37
37
|
{% if page.with_announcements and page.with_announcements.size > 0 -%}
|
38
38
|
{% for announcement in page.with_announcements %}
|
@@ -44,47 +44,50 @@
|
|
44
44
|
{% endfor %}
|
45
45
|
{% endif -%}
|
46
46
|
|
47
|
-
{% if page.with_breadcrumbs == true %}
|
48
|
-
<div class="row justify-content-center">
|
49
|
-
<div class="col
|
50
|
-
|
47
|
+
{% if page.with_breadcrumbs == true or page.with_locales.size > 0 %}
|
48
|
+
<div class="row justify-content-center mb-4">
|
49
|
+
<div class="col">
|
50
|
+
{% if page.with_breadcrumbs == true %}
|
51
|
+
{% include base/breadcrumbs.html %}
|
52
|
+
{% endif %}
|
53
|
+
</div>
|
54
|
+
<div class="col-auto">
|
55
|
+
{% if page.with_locales.size > 0 %}
|
56
|
+
{% include base/languages.html %}
|
57
|
+
{% endif %}
|
51
58
|
</div>
|
52
59
|
</div>
|
53
60
|
{% endif %}
|
54
61
|
|
55
|
-
{% if page.
|
56
|
-
<div class="row justify-content-center">
|
62
|
+
{% if page.with_title == true -%}
|
63
|
+
<div class="row justify-content-center mb-4">
|
57
64
|
<div class="col-sm-12 col-lg-8">
|
58
|
-
<div class="
|
59
|
-
|
60
|
-
</div>
|
65
|
+
<div class="h1">{{ page.title }}</div>
|
66
|
+
{% if page.with_preamble == true -%}
|
67
|
+
<div class="lead">{{ page.title_lead }}</div>
|
68
|
+
{% endif -%}
|
61
69
|
</div>
|
62
70
|
</div>
|
63
71
|
{% endif %}
|
64
72
|
|
65
|
-
{% if page.
|
66
|
-
<div class="row justify-content-center">
|
73
|
+
{% if page.with_artwork != false %}
|
74
|
+
<div class="row justify-content-center mb-4">
|
67
75
|
<div class="col-sm-12 col-lg-8">
|
68
|
-
<
|
69
|
-
<div class="h1">{{ page.title }}</div>
|
70
|
-
{% if page.with_preamble == true -%}
|
71
|
-
<div class="lead">{{ page.title_lead }}</div>
|
72
|
-
{% endif -%}
|
73
|
-
</div>
|
76
|
+
<img src="{{ site.baseurl }}/assets/img/{{ page.with_artwork }}" class="img-fluid rounded bg-dark" alt="{{ page.title }}" />
|
74
77
|
</div>
|
75
78
|
</div>
|
76
79
|
{% endif %}
|
77
80
|
|
78
81
|
{% if page.with_toc == true %}
|
79
|
-
<div class="row justify-content-center">
|
82
|
+
<div class="row justify-content-center mb-4">
|
80
83
|
<div class="col-sm-12 col-lg-8">
|
81
|
-
|
84
|
+
{% include base/toc-accordion.html %}
|
82
85
|
</div>
|
83
86
|
</div>
|
84
87
|
{% endif %}
|
85
88
|
|
86
89
|
{% if page.with_content == true %}
|
87
|
-
<div class="row justify-content-center">
|
90
|
+
<div class="row justify-content-center mb-4">
|
88
91
|
<div class="col-sm-12 col-lg-8">
|
89
92
|
<div class="content">
|
90
93
|
{{ content }}
|