jekyll-theme-centos 2.3.0.beta.135 → 2.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 519eb2073fe13010a1afbd49b13321e29d3837c36b531825794d9ba6c5798624
4
- data.tar.gz: a42e2d4d120bc17fd8a830fcb717d0441b60299a29aea6bb176d71e169c70e10
3
+ metadata.gz: 59d54f2ca6d10928e2bd179b5cbac8dd10af0b5fd54521334e46560909f46f40
4
+ data.tar.gz: 55afb80a9cb97334fa6390f2fd14b14baf21169fd415f8c57092dd5d0924b5d4
5
5
  SHA512:
6
- metadata.gz: cb5ea107fcc5de0848d0e200a1c9c7326163cab4096f124b4c2f08ca98b0d463bc5d7c129dbee3e3f3996aa6416e1bcc5be2a8e5fc0780d6314eec1569da6990
7
- data.tar.gz: 2915c992ae633d845dd5aa2283e88aed0bccd9f8a1862e36ea04572ead38466e5e24e7ace881604aac9ed86d0c8b8506553584329ee60ee572bb4dd336fc59d3
6
+ metadata.gz: db147da4a8203e3b2de6bd06d0f1a6bcb3ca16aa23453467628fa3ea29d219c8387107ce3c3b46b0291781a630817db8acbb88502fa1cc481dc987c97bfb4d09
7
+ data.tar.gz: 5a3121d5d4142c393489437476e3df9b09bde2895551125053239a76d19e954b2b532390bf8f21a29996ac5f60190cdb41679eefb49012706a6bd69e086c2c59
data/_config.yml CHANGED
@@ -14,14 +14,6 @@
14
14
  # https://learn-the-web.algonquindesign.ca/topics/markdown-yaml-cheat-sheet/#yaml
15
15
  # https://learnxinyminutes.com/docs/yaml/
16
16
 
17
- # These are used to personalize your new site. If you look in the HTML files,
18
- # you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
19
- # You can create any custom variable you would like, and they will be
20
- # accessible in the templates via {{ site.myvariable }}.
21
- title: jekyll-theme-centos
22
- email: areguera@centosproject.org
23
- description: "Jekyll theme for CentOS project websites."
24
-
25
17
  # site.manifestation - Set the name of the visual manifestation you are
26
18
  # providing a site for. The theme presents this name on the right side of the
27
19
  # CentOS logo. If this value is not empty, the navbar data must be related to
@@ -35,14 +27,11 @@ navbar_data_dirname: "base"
35
27
 
36
28
  # site.navbar_data_filename - Set the name of the navbar data file. For
37
29
  # example, if the navbar file is at `_data/base/navbar.yml', the value you need
38
- # to provide is `navbar', without the extension.
39
- navbar_data_filename: "navbar"
40
-
41
- # The base hostname & protocol for your site, e.g. http://example.com
42
- url: "https://centos.gitlab.io"
43
-
44
- # The subpath of your site, e.g. /blog
45
- baseurl: "/artwork/centos-web/jekyll-theme-centos"
30
+ # to provide is `navbar', without the extension. The CentOS navbar is stored in
31
+ # jekyll-theme-centos-base component, specifcally in the file
32
+ # `src/YAML/navbar_www.yml'. The CentOS navbar is the one shipped in
33
+ # jekyll-theme-centos by default.
34
+ navbar_data_filename: "navbar_www"
46
35
 
47
36
  defaults:
48
37
  - scope:
@@ -68,14 +57,18 @@ collections:
68
57
  permalink: /:categories/:title/
69
58
 
70
59
  exclude:
71
- - .npm
72
- - .bundle/
60
+ - .bundle
61
+ - .git
73
62
  - .sass-cache/
74
63
  - .jekyll-cache/
75
- - node_modules/
64
+ - gemfiles/
76
65
  - Gemfile
77
66
  - Gemfile.lock
78
- - .git
67
+ - node_modules/
68
+ - vendor/bundle/
69
+ - vendor/cache/
70
+ - vendor/gems/
71
+ - vendor/ruby/
79
72
 
80
73
  sass:
81
74
  style: compressed
@@ -1,74 +1,57 @@
1
1
  ---
2
2
  #
3
- # site.data.base.navbar - Control top navigation bar using relative links for
4
- # internal resources and absolute links for external resources. Useful when you
5
- # need the same site to be browsable on different environments (e.g., www and
6
- # www.dev).
3
+ # site.data.base.navbar - Control top navigation bar using relative links
4
+ # specific to jekyll-theme-centos-base website component. Not used inside
5
+ # CentOS websites. Used in website component presentation only.
7
6
  #
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: "#"
7
+ - name: "Layouts"
8
+ icon: "fa-solid fa-layer-group"
9
+ link: "/layouts/"
16
10
  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"
11
+ - name: "base/default.html"
12
+ link: "/layouts/default/"
27
13
  visible_on: ["navbar", "footer"]
28
- - name: "Community"
29
- icon: "fas fa-users"
30
- link: "#"
14
+
15
+ - name: "Includes"
16
+ icon: "fa-solid fa-arrows-turn-to-dots"
17
+ link: "/includes/"
31
18
  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"
19
+ - name: "base/announcements.html"
20
+ link: "/includes/announcements/"
21
+ - name: "base/breadcrumbs.html"
22
+ link: "/includes/breadcrumbs/"
23
+ - name: "base/head.html"
24
+ link: "/includes/head/"
25
+ - name: "base/header.html"
26
+ link: "/includes/header/"
27
+ - name: "base/navbar.html"
28
+ link: "/includes/navbar/"
29
+ - name: "base/toc-accordion.html"
30
+ link: "/includes/toc-accordion/"
31
+ - name: "base/toc.html"
32
+ link: "/includes/toc/"
53
33
  visible_on: ["navbar", "footer"]
54
- - name: "Documentation"
55
- icon: "fas fa-book"
56
- link: "#"
34
+
35
+ - name: "Sass"
36
+ icon: "fa-brands fa-sass"
37
+ link: "/sass/"
57
38
  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"
39
+ - name: "base/variables"
40
+ link: "/sass/variables"
41
+ - name: "base/centos"
42
+ link: "/sass/centos"
43
+ visible_on: ["navbar", "footer"]
44
+
45
+ - name: "Data"
46
+ icon: "fa-solid fa-file-code"
47
+ link: "/data/"
48
+ menu:
49
+ - name: "site.data.base.identity"
50
+ link: "/data/identity"
51
+ - name: "site.data.base.navbar"
52
+ link: "/data/navbar"
53
+ - name: "site.data.base.navbar_absolute"
54
+ link: "/data/navbar_absolute"
55
+ - name: "site.data.base.navbar_component"
56
+ link: "/data/navbar_component"
64
57
  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: []
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  #
3
- # site.data.navbar_absolute - Control top navigation bar using absolute links
4
- # for both internal and external resources. Useful when you build the
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
5
  # navigation bar for sites other than "www.centos.org" website and you want to
6
6
  # keep references to "www.centos.org."
7
7
  #
@@ -0,0 +1,74 @@
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: []
@@ -0,0 +1,48 @@
1
+ ---
2
+ - name: "Layouts"
3
+ icon: "fa-solid fa-layer-group"
4
+ link: "/layouts/"
5
+ menu:
6
+ - name: "download/default"
7
+ link: "/layouts/download/default/"
8
+ visible_on: ["navbar", "footer"]
9
+
10
+ - name: "Includes"
11
+ icon: "fa-solid fa-arrows-turn-to-dots"
12
+ link: "/includes/"
13
+ menu:
14
+ - name: download/cards-body-convert.html
15
+ link: /includes/download/cards-body-convert/
16
+ - name: download/cards-body-doc.html
17
+ link: /includes/download/cards-body-doc/
18
+ - name: download/cards-body-eol.html
19
+ link: /includes/download/cards-body-eol/
20
+ - name: download/cards-body.html
21
+ link: /includes/download/cards-body/
22
+ - name: download/cards-body-screenshot.html
23
+ link: /includes/download/cards-body-screenshot/
24
+ - name: download/cards-footer.html
25
+ link: /includes/download/cards-footer/
26
+ - name: download/cards-header-convert.html
27
+ link: /includes/download/cards-header-convert/
28
+ - name: download/cards-header-doc.html
29
+ link: /includes/download/cards-header-doc/
30
+ - name: download/cards-header-eol.html
31
+ link: /includes/download/cards-header-eol/
32
+ - name: download/cards-header.html
33
+ link: /includes/download/cards-header/
34
+ - name: download/cards-header-screenshot.html
35
+ link: /includes/download/cards-header-screenshot/
36
+ - name: download/cards.html
37
+ link: /includes/download/cards/
38
+ visible_on: ["navbar", "footer"]
39
+
40
+ - name: "Data"
41
+ icon: "fa-solid fa-file-code"
42
+ link: "/data/"
43
+ menu:
44
+ - name: "site.data.download.navbar"
45
+ link: "/data/navbar/"
46
+ - name: "site.data.download.cards"
47
+ link: "/data/navbar/"
48
+ visible_on: ["navbar", "footer"]
@@ -0,0 +1,34 @@
1
+ ---
2
+ - name: "Layouts"
3
+ icon: "fa-solid fa-layer-group"
4
+ link: "/layouts/"
5
+ menu:
6
+ - name: "people/default"
7
+ link: "/layouts/people/default"
8
+ visible_on: ["navbar", "footer"]
9
+
10
+ - name: "Includes"
11
+ icon: "fa-solid fa-arrows-turn-to-dots"
12
+ link: "/includes/"
13
+ menu:
14
+ - name: "people/about.html"
15
+ link: "includes/people/about"
16
+ - name: "people/header.html"
17
+ link: "includes/people/header"
18
+ - name: "people/posts.html"
19
+ link: "includes/people/posts"
20
+ - name: "people/projects.html"
21
+ link: "includes/people/projects"
22
+ - name: "people/pubkeys.html"
23
+ link: "includes/people/pubkeys"
24
+ - name: "people/support.html"
25
+ link: "includes/people/support"
26
+ visible_on: ["navbar", "footer"]
27
+
28
+ - name: "Data"
29
+ icon: "fa-solid fa-file-code"
30
+ link: "/data/"
31
+ menu:
32
+ - name: "site.data.people.navbar"
33
+ link: "/data/people/navbar/"
34
+ visible_on: ["navbar", "footer"]
@@ -37,7 +37,7 @@
37
37
  <ul class="nav list-unstyled">
38
38
  {% for item in site.data.base.footer.social -%}
39
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>
40
+ <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>
41
41
  </li>
42
42
  {% endfor %}
43
43
  </ul>
@@ -13,5 +13,5 @@
13
13
  {% if page.with_datatables == true -%}
14
14
  <link rel="stylesheet" href="{{ site.baseurl }}/assets/css/dataTables.bootstrap5.min.css">
15
15
  {% endif -%}
16
- <link rel="stylesheet" href="{{ site.baseurl }}/assets/css/stylesheet.min.css" />
16
+ <link rel="stylesheet" href="{{ site.baseurl }}/assets/css/base/stylesheet.min.css" />
17
17
  </head>
@@ -3,7 +3,7 @@
3
3
  <nav class="navbar navbar-expand-lg navbar-dark bg-dark shadow">
4
4
  <div class="container">
5
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">
6
+ <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarContent" aria-controls="navbarContent" aria-expanded="false" aria-label="Toggle navigation">
7
7
  <span class="navbar-toggler-icon"></span>
8
8
  </button>
9
9
  <div class="collapse navbar-collapse" id="navbarContent">
@@ -1,8 +1,4 @@
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 %}
1
+ {% assign cards = site.data.download.cards %}
6
2
 
7
3
  {% for card in cards %}
8
4
  <div class="mb-5">
@@ -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">
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>
@@ -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 %}
@@ -20,7 +20,7 @@
20
20
  </div>
21
21
  {% endif %}
22
22
  <div class="row my-5 justify-content-center">
23
- <div class="col-sm-12 col-xl-8">{{ content }}</div>
23
+ <div class="col-sm-12 col-xl-8 content">{{ content }}</div>
24
24
  </div>
25
25
  </div>
26
26
  </main>
@@ -0,0 +1,7 @@
1
+ ---
2
+ layout: base/default
3
+ ---
4
+
5
+ {% include download/cards.html %}
6
+
7
+ {{ content }}
@@ -0,0 +1,20 @@
1
+ <!DOCTYPE html>
2
+ <html lang="{{ page.lang | default: 'en' }}">
3
+ {% include base/head.html title=page.title -%}
4
+
5
+ <body id="top">
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
+ {% include base/footer.html %}
18
+ {% include base/script.html -%}
19
+ </body>
20
+ </html>
@@ -10,19 +10,14 @@ main {
10
10
  // (toc) links, the heading is hidden behind the navbar. This workaround
11
11
  // fixes the linked headings visibility issue in the page.
12
12
  // --------------------------------------------------------------------------------
13
- h1,
14
- h2,
15
- h3,
16
- h4,
17
- h5,
18
- h6 {
19
- &::before {
20
- display: block;
21
- height: 6rem;
22
- margin-top: -6rem;
23
- visibility: hidden;
24
- content: "";
25
- }
13
+ .content > h1,
14
+ .content > h2,
15
+ .content > h3,
16
+ .content > h4,
17
+ .content > h5,
18
+ .content > h6 {
19
+ scroll-margin-top: 80px;
20
+ scroll-margin-bottom: 100px;
26
21
  margin-top: 3rem;
27
22
  }
28
23
 
@@ -30,7 +25,7 @@ main {
30
25
  // Backgrounds
31
26
  // --------------------------------------------------------------------------------
32
27
  .bg-image {
33
- background-image: url("../img/centos-motif.png");
28
+ background-image: url("../../img/centos-motif.png");
34
29
  background-size: cover;
35
30
  background-repeat: no-repeat;
36
31
  background-position: center;
Binary file