jekyll-theme-centos 2.3.0.beta.67 → 2.3.0.beta.68

Sign up to get free protection for your applications and to get access to all the features.
Files changed (54) hide show
  1. checksums.yaml +4 -4
  2. data/_includes/default/header.html +4 -4
  3. data/_includes/download/cards-body-convert.html +6 -8
  4. data/_includes/download/cards-body-doc.html +7 -4
  5. data/_includes/download/cards-body-eol.html +13 -4
  6. data/_includes/download/cards-body-screenshot.html +3 -0
  7. data/_includes/download/cards-body.html +6 -5
  8. data/_includes/download/cards-header-convert.html +7 -8
  9. data/_includes/download/cards-header-doc.html +7 -8
  10. data/_includes/download/cards-header-eol.html +7 -8
  11. data/_includes/download/cards-header-screenshot.html +8 -0
  12. data/_includes/download/cards-header.html +12 -10
  13. data/_includes/download/cards.html +47 -52
  14. data/_includes/editbar.html +4 -41
  15. data/_includes/footer.html +28 -31
  16. data/_includes/home/header.html +1 -1
  17. data/_includes/people/about.html +1 -1
  18. data/_includes/people/header.html +1 -1
  19. data/_includes/people/posts.html +1 -1
  20. data/_includes/people/projects.html +1 -1
  21. data/_includes/people/pubkeys.html +2 -2
  22. data/_includes/people/support.html +1 -1
  23. data/_includes/scripts.html +65 -0
  24. data/_includes/toc-accordion.html +4 -2
  25. data/_layouts/default.html +7 -12
  26. data/_layouts/people.html +16 -40
  27. data/_sass/centos/_adjustments.scss +57 -0
  28. data/_sass/centos/_variables.scss +72 -14
  29. data/assets/css/stylesheet.lists.min.scss +2 -1
  30. data/assets/css/stylesheet.min.scss +2 -1
  31. data/assets/img/distributions/centos-linux/7/screenshot-n.png +0 -0
  32. data/assets/img/distributions/centos-linux/8/screenshot-n.png +0 -0
  33. data/assets/img/distributions/centos-stream/8/screenshot-n.png +0 -0
  34. data/assets/img/distributions/centos-stream/9/screenshot-n.png +0 -0
  35. data/assets/img/distributions/name/release/screenshot-n.png +0 -0
  36. data/assets/img/distributions/name/release/screenshot-n.svg +128 -0
  37. data/assets/js/jquery.dataTables.min.js +4 -0
  38. data/assets/js/vanilla-back-to-top.min.js +1 -0
  39. data/default.md +36 -25
  40. data/download.md +91 -0
  41. data/people.md +3 -1
  42. metadata +15 -14
  43. data/_includes/top.html +0 -3
  44. data/_layouts/default-datatables.html +0 -35
  45. data/_sass/centos/_headings.scss +0 -32
  46. data/_sass/centos/_links.scss +0 -11
  47. data/assets/js/clipboard.js +0 -890
  48. data/assets/js/dataTables.bootstrap5.js +0 -212
  49. data/assets/js/dataTables.bootstrap5.min.mjs +0 -4
  50. data/assets/js/dataTables.bootstrap5.mjs +0 -168
  51. data/assets/js/jquery.js +0 -10965
  52. data/assets/js/jquery.min.map +0 -1
  53. data/assets/js/jquery.slim.js +0 -8866
  54. data/assets/js/jquery.slim.min.map +0 -1
@@ -1,20 +1,17 @@
1
1
  <!DOCTYPE html>
2
2
  <html lang="{{ page.lang | default: 'en' }}">
3
-
4
3
  {% include head.html -%}
5
4
 
6
- <body>
7
-
5
+ <body id="top">
8
6
  {% include navbar.html -%}
9
7
 
10
- <main class="bg-light">
11
-
8
+ <main>
12
9
  {% include header.html -%}
13
10
 
14
- <div class="container shadow-lg bg-body p-5 mt-n5 rounded-top">
11
+ <div class="container py-5">
15
12
  <div class="row">
16
- <div class="col-sm-8">{% include breadcrumbs.html %}</div>
17
- <div class="col-sm-4 text-end">{% include editbar.html %}</div>
13
+ <div class="col">{% include breadcrumbs.html %}</div>
14
+ <div class="col">{% include editbar.html %}</div>
18
15
  </div>
19
16
  <div class="row">
20
17
  <div class="col">{% include toc-accordion.html %}</div>
@@ -23,13 +20,11 @@
23
20
  <div class="col mt-3">{{ content }}</div>
24
21
  </div>
25
22
  </div>
26
-
27
23
  </main>
28
24
 
29
- {% include footer.html -%}
25
+ {% include footer.html %}
30
26
 
31
- <script src="{{ site.baseurl }}/assets/js/bootstrap.bundle.min.js"></script>
27
+ {% include scripts.html %}
32
28
 
33
29
  </body>
34
-
35
30
  </html>
data/_layouts/people.html CHANGED
@@ -1,49 +1,25 @@
1
1
  <!DOCTYPE html>
2
2
  <html lang="{{ page.lang | default: 'en' }}">
3
+
3
4
  {% include head.html -%}
4
5
 
5
6
  <body>
7
+
6
8
  {% include navbar.html -%}
7
9
 
8
- <main class="bg-light">{% include people/header.html %} {% include people/about.html %} {% include people/projects.html %} {% include people/posts.html %} {% include people/pubkeys.html %} {% include people/support.html %}</main>
9
-
10
- {% include footer.html -%}
11
-
12
- <script src="{{ site.baseurl }}/assets/js/bootstrap.bundle.min.js"></script>
13
- <script src="{{ site.baseurl }}/assets/js/jquery.min.js"></script>
14
- <script src="{{ site.baseurl }}/assets/js/clipboard.min.js"></script>
15
- <script>
16
- // Initialize ClipboardJS
17
- $(".btn-clipboard").on("click", function () {
18
- let button = $(this);
19
- var copy_id = $(this).attr("id");
20
- var clipboard = new ClipboardJS("#" + copy_id);
21
-
22
- clipboard.on("success", function () {
23
- const currentLabel = button.html();
24
- const tooltip = bootstrap.Tooltip.getInstance("#" + copy_id);
25
- const tooltipLabel = button.attr("data-bs-title");
26
-
27
- // Exit label update when already in progress
28
- if (button.html() === '<i class="fa-solid fa-clipboard-check"></i>') {
29
- return;
30
- }
31
-
32
- // Update button label and tooltip
33
- button.html('<i class="fa-solid fa-clipboard-check"></i>');
34
- tooltip.setContent({ ".tooltip-inner": "Copied!" });
35
-
36
- // Revert button label after 2 seconds
37
- setTimeout(function () {
38
- button.html(currentLabel);
39
- tooltip.setContent({ ".tooltip-inner": tooltipLabel });
40
- }, 2000);
41
- });
42
- });
43
-
44
- // Initialize Tooltips
45
- const tooltipTriggerList = document.querySelectorAll('[data-bs-toggle="tooltip"]');
46
- const tooltipList = [...tooltipTriggerList].map((tooltipTriggerEl) => new bootstrap.Tooltip(tooltipTriggerEl));
47
- </script>
10
+ <main class="bg-light">
11
+
12
+ {% include people/header.html %}
13
+ {% include people/about.html %}
14
+ {% include people/projects.html %}
15
+ {% include people/posts.html %}
16
+ {% include people/pubkeys.html %}
17
+ {% include people/support.html %}
18
+
19
+ </main>
20
+
21
+ {% include footer.html %}
22
+ {% include scripts.html -%}
23
+
48
24
  </body>
49
25
  </html>
@@ -0,0 +1,57 @@
1
+ // --------------------------------------------------------------------------------
2
+ // Adjustments
3
+ // --------------------------------------------------------------------------------
4
+
5
+ main {
6
+ // --------------------------------------------------------------------------------
7
+ // Navbar and linked headings' correction.
8
+ //
9
+ // By default, when you access page headings from the page table of content
10
+ // (toc) links, the heading is hidden behind the navbar. This workaround
11
+ // fixes the linked headings visibility issue in the page.
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
+ }
26
+ margin-top: 3rem;
27
+ }
28
+
29
+ // --------------------------------------------------------------------------------
30
+ // Backgrounds
31
+ // --------------------------------------------------------------------------------
32
+ .bg-image {
33
+ background: url(../img/centos-motif.png) right center / cover;
34
+ }
35
+
36
+ .bg-light-radial-gradient {
37
+ background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(248, 249, 250, 0) 100%);
38
+ }
39
+
40
+ // --------------------------------------------------------------------------------
41
+ // DataTable
42
+ // --------------------------------------------------------------------------------
43
+ .dataTables_wrapper {
44
+ .dataTables_filter {
45
+ text-align: end;
46
+ }
47
+ .dataTables_length,
48
+ .dataTables_filter {
49
+ @extend .my-3;
50
+ }
51
+ .form-select,
52
+ .form-control {
53
+ width: auto;
54
+ display: inline-block;
55
+ }
56
+ }
57
+ }
@@ -8,17 +8,75 @@ $centos-color-4: #efa724;
8
8
  //
9
9
  // Bootstrap customization
10
10
  //
11
- $enable-rounded: true;
12
- $enable-negative-margins: true;
13
- $nav-pills-link-active-bg: $centos-color-1;
14
- $link-color: $centos-color-1;
15
- $link-decoration: none;
16
- $primary: $centos-color-1;
17
- $secondary: $centos-color-4;
18
- $dark: #200735;
19
- $dropdown-dark-bg: $dark;
20
- $font-family-sans-serif: Montserrat, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !default;
21
- $font-family-monospace: overpass-mono, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !default;
22
- $line-height-base: 1.75;
23
- $link-hover-decoration: underline;
24
- $headings-font-weight: 700;
11
+ $enable-rounded: true;
12
+ $enable-negative-margins: true;
13
+ $nav-pills-link-active-bg: $centos-color-1;
14
+ $link-color: $centos-color-1;
15
+ $link-decoration: none;
16
+ $primary: $centos-color-1;
17
+ $secondary: $centos-color-4;
18
+ $dark: #200735;
19
+ $dropdown-dark-bg: $dark;
20
+ $font-family-sans-serif: Montserrat, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !default;
21
+ $font-family-monospace: overpass-mono, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !default;
22
+ $line-height-base: 1.75;
23
+ $link-hover-decoration: underline;
24
+ $headings-font-weight: 700;
25
+
26
+ // --------------------------------------------------------------------------------
27
+ // Adjustments
28
+ // --------------------------------------------------------------------------------
29
+
30
+ main {
31
+ // --------------------------------------------------------------------------------
32
+ // Navbar and linked headings' correction.
33
+ //
34
+ // By default, when you access page headings from the page table of content
35
+ // (toc) links, the heading is hidden behind the navbar. This workaround
36
+ // fixes the linked headings visibility issue in the page.
37
+ // --------------------------------------------------------------------------------
38
+ h1,
39
+ h2,
40
+ h3,
41
+ h4,
42
+ h5,
43
+ h6 {
44
+ &::before {
45
+ display: block;
46
+ height: 6rem;
47
+ margin-top: -6rem;
48
+ visibility: hidden;
49
+ content: "";
50
+ }
51
+ margin-top: 3rem;
52
+ }
53
+
54
+ // --------------------------------------------------------------------------------
55
+ // Backgrounds
56
+ // --------------------------------------------------------------------------------
57
+ .bg-image {
58
+ background: url(../img/centos-motif.png) right center / cover;
59
+ }
60
+
61
+ .bg-light-radial-gradient {
62
+ background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(248, 249, 250, 0) 100%);
63
+ }
64
+
65
+ // --------------------------------------------------------------------------------
66
+ // DataTable
67
+ // --------------------------------------------------------------------------------
68
+ .dataTables_wrapper {
69
+ .dataTables_filter {
70
+ text-align: end;
71
+ }
72
+ .dataTables_length,
73
+ .dataTables_filter {
74
+ @extend .my-3;
75
+ }
76
+ .form-select,
77
+ .form-control {
78
+ width: auto;
79
+ display: inline-block;
80
+ }
81
+ }
82
+ }
@@ -1,9 +1,10 @@
1
1
  ---
2
2
  ---
3
+
3
4
  // Bootstrap
4
5
  @import "centos/variables";
5
6
  @import "bootstrap/bootstrap";
6
- @import "centos/headings";
7
+ @import "centos/adjustments";
7
8
  @import "centos/sites/lists";
8
9
 
9
10
  // Fontawesome
@@ -1,9 +1,10 @@
1
1
  ---
2
2
  ---
3
+
3
4
  // Bootstrap
4
5
  @import "centos/variables";
5
6
  @import "bootstrap/bootstrap";
6
- @import "centos/headings";
7
+ @import "centos/adjustments";
7
8
 
8
9
  // Fontawesome
9
10
  @import "fontawesome-free/fontawesome";
@@ -0,0 +1,128 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ width="1920"
6
+ height="1080"
7
+ viewBox="0 0 507.99999 285.75"
8
+ version="1.1"
9
+ id="svg5"
10
+ inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
11
+ sodipodi:docname="screenshot-n.svg"
12
+ inkscape:export-filename="screenshot-n.png"
13
+ inkscape:export-xdpi="96"
14
+ inkscape:export-ydpi="96"
15
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
16
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
17
+ xmlns:xlink="http://www.w3.org/1999/xlink"
18
+ xmlns="http://www.w3.org/2000/svg"
19
+ xmlns:svg="http://www.w3.org/2000/svg">
20
+ <sodipodi:namedview
21
+ id="namedview7"
22
+ pagecolor="#ffffff"
23
+ bordercolor="#666666"
24
+ borderopacity="1.0"
25
+ inkscape:showpageshadow="2"
26
+ inkscape:pageopacity="0.0"
27
+ inkscape:pagecheckerboard="0"
28
+ inkscape:deskcolor="#d1d1d1"
29
+ inkscape:document-units="mm"
30
+ showgrid="false"
31
+ inkscape:zoom="0.75031886"
32
+ inkscape:cx="813.65408"
33
+ inkscape:cy="586.41735"
34
+ inkscape:window-width="3440"
35
+ inkscape:window-height="1371"
36
+ inkscape:window-x="0"
37
+ inkscape:window-y="32"
38
+ inkscape:window-maximized="1"
39
+ inkscape:current-layer="layer1" />
40
+ <defs
41
+ id="defs2">
42
+ <pattern
43
+ inkscape:collect="always"
44
+ xlink:href="#Strips1_1white"
45
+ id="pattern2972"
46
+ patternTransform="matrix(3.9313961,2.2697926,-4.2207076,7.31048,-1374.3636,-516.81011)" />
47
+ <pattern
48
+ inkscape:collect="always"
49
+ patternUnits="userSpaceOnUse"
50
+ width="2"
51
+ height="1"
52
+ patternTransform="translate(0,0) scale(10,10)"
53
+ id="Strips1_1white"
54
+ inkscape:stockid="Stripes 1:1 white">
55
+ <rect
56
+ style="fill:white;stroke:none"
57
+ x="0"
58
+ y="-0.5"
59
+ width="1"
60
+ height="2"
61
+ id="rect1946" />
62
+ </pattern>
63
+ </defs>
64
+ <g
65
+ inkscape:label="Layer 1"
66
+ inkscape:groupmode="layer"
67
+ id="layer1"
68
+ transform="translate(1361.2655,457.33365)">
69
+ <rect
70
+ style="fill:#f6f5f4;stroke:none;stroke-width:1.5875;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
71
+ id="rect241"
72
+ width="508"
73
+ height="285.75"
74
+ x="-1361.2655"
75
+ y="-457.33365" />
76
+ <rect
77
+ style="fill:url(#pattern2972);fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000;opacity:0.15"
78
+ id="rect405"
79
+ width="508"
80
+ height="285.75"
81
+ x="-1361.2655"
82
+ y="-457.33365" />
83
+ <text
84
+ 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="-1221.2755"
87
+ y="-267.83066"
88
+ id="text473"><tspan
89
+ sodipodi:role="line"
90
+ id="tspan471"
91
+ style="font-weight:bold;fill:#deddda;stroke-width:0.264583"
92
+ x="-1221.2755"
93
+ y="-267.83066">SCREENSHOT EXAMPLE</tspan></text>
94
+ <text
95
+ xml:space="preserve"
96
+ style="font-size:18.5803px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';fill:#deddda;stroke-width:0.264583"
97
+ x="-1153.7905"
98
+ y="-243.7957"
99
+ id="text477"><tspan
100
+ sodipodi:role="line"
101
+ id="tspan475"
102
+ style="fill:#deddda;stroke-width:0.264583"
103
+ x="-1153.7905"
104
+ y="-243.7957">1920x1080</tspan></text>
105
+ <g
106
+ id="g28251-9"
107
+ transform="matrix(1.4890225,1.4890225,-1.4890225,1.4890225,-2118.0722,-494.67476)"
108
+ inkscape:export-filename="/home/areguera/Pictures/centos-symbol-v20.png"
109
+ inkscape:export-xdpi="10.11"
110
+ inkscape:export-ydpi="10.11"
111
+ style="stroke-width:0.5">
112
+ <ellipse
113
+ style="fill:#deddda;fill-opacity:1;stroke:none;stroke-width:0.66146;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
114
+ id="ellipse15079-1"
115
+ cx="388.1235"
116
+ cy="-290.71561"
117
+ inkscape:export-filename="/home/areguera/Pictures/centos-symbol-v10.png"
118
+ inkscape:export-xdpi="13.06"
119
+ inkscape:export-ydpi="13.06"
120
+ rx="20.103001"
121
+ ry="20.103493" />
122
+ <path
123
+ id="rect52127-5-0"
124
+ style="fill:#f6f5f4;fill-opacity:1;stroke-width:4.56404;stroke-linecap:round;paint-order:fill markers stroke;stop-color:#000000"
125
+ d="m 377.36591,-301.47322 3.1e-4,6.30167 -4.45593,4.45594 4.45593,4.45593 -3.1e-4,6.30167 h 6.30198 l 4.45594,4.45593 4.45593,-4.45593 h 6.30134 l 3.2e-4,-6.30167 4.45594,-4.45593 -4.45594,-4.45594 -3.2e-4,-6.30167 h -6.30134 l -4.45593,-4.45593 -4.45594,4.45593 z m 2.27111,4.18345 1.91265,-1.91265 3.2276,3.22761 -3.2e-4,1.91263 h -1.91233 z m -2.16283,5.22203 4.56454,-3.4e-4 1.35246,1.35247 -1.35246,1.35246 h -4.56422 z m 9.29718,-9.29718 h 2.70491 v 4.56422 l -1.35245,1.35246 -1.35246,-1.35246 z m 0.0911,7.6066 1.26064,1.28263 1.26035,-1.28295 -0.0154,1.79789 1.7982,-0.0158 -1.28231,1.26034 1.28296,1.26033 -1.79821,-0.0152 0.0158,1.79822 -1.26032,-1.28232 -1.26034,1.28296 0.0154,-1.79853 -1.79853,0.0162 1.28263,-1.26065 -1.28296,-1.26034 1.79822,0.0158 z m -7.2255,9.61687 3.2276,-3.2276 1.91264,3.2e-4 v 1.91232 l -3.2276,3.2276 z m 11.83335,-11.83336 3.22761,-3.22761 1.91264,1.91265 -3.2276,3.22759 h -1.91233 z m -4.69869,11.34461 1.35214,-1.35213 1.35214,1.35213 3.1e-4,4.56455 -2.7046,-3.2e-4 z m 6.08509,-6.08509 1.35246,-1.35245 h 4.56422 l -3.2e-4,2.70459 h -4.56422 z m -1.3864,3.34656 1.91265,-3.2e-4 3.2276,3.2276 -1.91265,1.91264 -3.2276,-3.2276 z" />
126
+ </g>
127
+ </g>
128
+ </svg>