jekyll-theme-centos 2.51.1.beta.46 → 2.51.1.beta.47
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- 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/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/download/default.html +7 -0
- data/_layouts/people/default.html +47 -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 +45 -3
@@ -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>
|
@@ -0,0 +1,47 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="{{ page.lang | default: 'en' }}">
|
3
|
+
{% include base/head.html title=page.title -%}
|
4
|
+
|
5
|
+
<body id="top" class="pt-0">
|
6
|
+
{% include base/navbar.html -%}
|
7
|
+
|
8
|
+
<main>
|
9
|
+
{% include people/header.html %}
|
10
|
+
{% include people/about.html %}
|
11
|
+
{% include people/projects.html %}
|
12
|
+
{% include people/posts.html %}
|
13
|
+
{% include people/pubkeys.html %}
|
14
|
+
{% include people/support.html %}
|
15
|
+
</main>
|
16
|
+
|
17
|
+
<footer class="footer small bg-dark bg-image text-light">
|
18
|
+
{% if page.with_shortcuts != false %}
|
19
|
+
<div class="container">
|
20
|
+
{% include base/shortcuts.html %}
|
21
|
+
</div>
|
22
|
+
{% endif %}
|
23
|
+
|
24
|
+
{% if page.with_finale == true %}
|
25
|
+
<div class="container border-5 border-top border-primary">
|
26
|
+
{% include base/finale.html %}
|
27
|
+
</div>
|
28
|
+
{% endif %}
|
29
|
+
|
30
|
+
{% if page.with_sponsors == true %}
|
31
|
+
<div class="container-fluid bg-light">
|
32
|
+
<div class="container">
|
33
|
+
{% include sponsors/carousel.html -%}
|
34
|
+
</div>
|
35
|
+
</div>
|
36
|
+
{% endif %}
|
37
|
+
|
38
|
+
{% if page.with_copyright == true %}
|
39
|
+
<div class="container py-1">
|
40
|
+
{% include base/copyright.html %}
|
41
|
+
</div>
|
42
|
+
{% endif %}
|
43
|
+
|
44
|
+
</footer>
|
45
|
+
{% include base/script.html -%}
|
46
|
+
</body>
|
47
|
+
</html>
|
Binary file
|
Binary file
|
Binary file
|
@@ -7,8 +7,8 @@
|
|
7
7
|
viewBox="0 0 507.99999 285.75"
|
8
8
|
version="1.1"
|
9
9
|
id="svg5"
|
10
|
-
inkscape:version="1.
|
11
|
-
sodipodi:docname="screenshot-n.svg"
|
10
|
+
inkscape:version="1.3 (0e150ed6c4, 2023-07-21)"
|
11
|
+
sodipodi:docname="distribution-release-screenshot-n.svg"
|
12
12
|
inkscape:export-filename="screenshot-n.png"
|
13
13
|
inkscape:export-xdpi="96"
|
14
14
|
inkscape:export-ydpi="96"
|
@@ -30,11 +30,11 @@
|
|
30
30
|
showgrid="false"
|
31
31
|
inkscape:zoom="0.75031886"
|
32
32
|
inkscape:cx="813.65408"
|
33
|
-
inkscape:cy="
|
33
|
+
inkscape:cy="585.75097"
|
34
34
|
inkscape:window-width="3440"
|
35
35
|
inkscape:window-height="1371"
|
36
36
|
inkscape:window-x="0"
|
37
|
-
inkscape:window-y="
|
37
|
+
inkscape:window-y="0"
|
38
38
|
inkscape:window-maximized="1"
|
39
39
|
inkscape:current-layer="layer1" />
|
40
40
|
<defs
|
@@ -79,18 +79,24 @@
|
|
79
79
|
width="508"
|
80
80
|
height="285.75"
|
81
81
|
x="-1361.2655"
|
82
|
-
y="-457.33365"
|
82
|
+
y="-457.33365"
|
83
|
+
inkscape:export-filename="distribution-release-screenshot-2.png"
|
84
|
+
inkscape:export-xdpi="96"
|
85
|
+
inkscape:export-ydpi="96" />
|
83
86
|
<text
|
84
87
|
xml:space="preserve"
|
85
|
-
style="font-size:18.2723px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';fill:#deddda;stroke-width:0.264583"
|
86
|
-
x="-
|
88
|
+
style="font-size:18.2723px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';text-align:center;text-anchor:middle;fill:#deddda;stroke-width:0.264583"
|
89
|
+
x="-1107.1011"
|
87
90
|
y="-267.83066"
|
88
|
-
id="text473"
|
91
|
+
id="text473"
|
92
|
+
inkscape:export-filename="distribution-release-screenshot-3.png"
|
93
|
+
inkscape:export-xdpi="96"
|
94
|
+
inkscape:export-ydpi="96"><tspan
|
89
95
|
sodipodi:role="line"
|
90
96
|
id="tspan471"
|
91
|
-
style="font-weight:bold;fill:#deddda;stroke-width:0.264583"
|
92
|
-
x="-
|
93
|
-
y="-267.83066">SCREENSHOT EXAMPLE</tspan></text>
|
97
|
+
style="font-weight:bold;text-align:center;text-anchor:middle;fill:#deddda;stroke-width:0.264583"
|
98
|
+
x="-1107.1011"
|
99
|
+
y="-267.83066">SCREENSHOT EXAMPLE #2</tspan></text>
|
94
100
|
<text
|
95
101
|
xml:space="preserve"
|
96
102
|
style="font-size:18.5803px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';fill:#deddda;stroke-width:0.264583"
|