jekyll-theme-centos 2.49.0 → 2.51.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: 3387e04315e3163487af3af8861a32efa8b021369112bc1b728fdb1702eaeb42
4
- data.tar.gz: fc0456b996ca1eb73c340219d5f3b00a16e9ee81cafda2dac17eccf2ce8ffe50
3
+ metadata.gz: 367c22b3ddd7f679d2f919c0ba4c284417537126d3f2f327e98233c71761097a
4
+ data.tar.gz: cc019c67a2b9e208cd2708ad327d5baa568f1c52616d8d0b70fb47b0c88a1b51
5
5
  SHA512:
6
- metadata.gz: c1972f93d4775a6db571b1f0086e4c5997e2dc7b4d3dd4e31d449fa351ef62fe80ac71cd26defe3d37d2f49e0bee10d09c3f8e4d7700d6d4d49bb30444beac9c
7
- data.tar.gz: a33c027d3310c1638ca5ffe043512a3d940f117851afed12c3460d996880a2673e8278ffbb3951d48082c449d6939cb668c88e6cdaa3d392a0102106b51c2187
6
+ metadata.gz: 7cb10868a9b930ac14d37c1dce6c1a9f9a284e835e8ca9e19d5f9515704898015f95bcfaecf07192991d7eb1e0fb2d2244ed1bd84686dab1e4adebf0bddd18db
7
+ data.tar.gz: 4a98615a5a70679ee46dd5c122fb1ef0b0f06df0b4d0b87856dc16e4acae7c0f3354295e55ccaa1f4527c830b055c8765679e848cd69c19a248697e13f3578a8
@@ -15,7 +15,7 @@
15
15
  <link rel="preconnect" href="https://fonts.googleapis.com">
16
16
  <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Source+Code+Pro:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap">
17
17
  <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap">
18
- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
18
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
19
19
  {% if page.with_highlight != false -%}
20
20
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.7.0/styles/{{ page.with_highlight | replace_first: 'base16-', 'base16/' | default: 'default' }}.min.css">
21
21
  <link rel="stylesheet" href="https://unpkg.com/highlightjs-copy@1.0.3/dist/highlightjs-copy.min.css" />
@@ -4,7 +4,7 @@
4
4
  {% assign figid = include.file %}
5
5
  {% endif %}
6
6
 
7
- <figure id="{{ figid | downcase | replace: ' ', '-' | replace: '/', '-' | remove: '.' }}" class="figure">
7
+ <figure id="fig-{{ figid | downcase | replace: ' ', '-' | replace: '/', '-' | remove: '.' }}" class="figure">
8
8
  {% if include.url %}
9
9
  <a href="{{ include.url }}">
10
10
  <img src="{{ site.url }}{{ site.baseurl }}/assets/img/{{ include.file }}" class="figure-img img-fluid rounded{% if include.extraclasses %} {{ include.extraclasses }}{% endif %}" alt="{{ include.alt }}"/>
@@ -0,0 +1,14 @@
1
+ <div class="row">
2
+ {% for page in include.pages %}
3
+ <div class="col-sm-6 ps-0">
4
+ <div class="card border-0">
5
+ <div class="card-body">
6
+ <div class="h5 card-title"><a href="{{ site.url }}{{ site.baseurl }}{{ page.url }}">{{ page.title }}</a></div>
7
+ {% if page.title_lead %}
8
+ <div class="card-text">{{ page.title_lead }}</div>
9
+ {% endif %}
10
+ </div>
11
+ </div>
12
+ </div>
13
+ {% endfor %}
14
+ </div>
@@ -132,9 +132,11 @@ main {
132
132
  // --------------------------------------------------------------------------------
133
133
  p {
134
134
  &.alert {
135
- padding-left: 3.4rem;
135
+ padding-left: 2.5rem;
136
136
  background-repeat: no-repeat;
137
- background-position: 0.85rem 0.85rem;
137
+ background-position-y: 1.25rem;
138
+ background-position-x: 0.8rem;
139
+ border-width: 0 0 0 0.5rem;
138
140
  }
139
141
  &.alert-primary {
140
142
  background-image: $alert-primary-icon;
@@ -151,6 +153,9 @@ main {
151
153
  &.alert-info {
152
154
  background-image: $alert-info-icon;
153
155
  }
156
+ &.alert-light {
157
+ background-image: $alert-light-icon;
158
+ }
154
159
  &.alert-success {
155
160
  background-image: $alert-success-icon;
156
161
  }
@@ -17,12 +17,14 @@ $success: #198754;
17
17
  $info: #0dcaf0;
18
18
  $warning: #ffc107;
19
19
  $danger: #dc3545;
20
+ $light: #f8f9fa;
20
21
 
21
22
  $primary-text-emphasis: shade-color($primary, 60%);
22
23
  $secondary-text-emphasis: shade-color($secondary, 60%);
23
24
  $success-text-emphasis: shade-color($success, 60%);
24
25
  $info-text-emphasis: shade-color($info, 60%);
25
26
  $warning-text-emphasis: shade-color($warning, 60%);
27
+ $light-text-emphasis: shade-color($light, 60%);
26
28
  $danger-text-emphasis: shade-color($danger, 60%);
27
29
  $dropdown-dark-bg: $dark;
28
30
 
@@ -41,12 +43,13 @@ $breadcrumb-divider: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/
41
43
  // --------------------------------------------------------------------------------
42
44
  // Alerts
43
45
  // --------------------------------------------------------------------------------
44
- $alert-primary-icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1.8em" viewBox="0 0 42.333 42.333"><g transform="rotate(45 -180.13 -610.203) scale(1.0529)"><circle cx="388.123" cy="-290.716" r="20.103" style="fill:rgba(#{to-rgb($primary-text-emphasis)},1);stroke:none;stroke-width:1.32292;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#{to-rgb($primary-text-emphasis)}"/><path d="M377.366-301.473v6.301l-4.456 4.456 4.456 4.456v6.302h6.302l4.456 4.456 4.456-4.456h6.301v-6.302l4.456-4.456-4.456-4.456v-6.301h-6.301l-4.456-4.456-4.456 4.456zm2.271 4.183 1.913-1.912 3.227 3.227v1.913h-1.912zm-2.163 5.222h4.565l1.352 1.352-1.352 1.353h-4.564zm9.297-9.297h2.705v4.564l-1.352 1.353-1.353-1.353zm.091 7.607 1.261 1.282 1.26-1.283-.015 1.798 1.798-.016-1.282 1.26 1.283 1.261-1.798-.015.016 1.798-1.26-1.282-1.261 1.283.015-1.799-1.798.016 1.282-1.26-1.283-1.26 1.799.015zm-7.225 9.617 3.228-3.228h1.912v1.913l-3.227 3.227zm11.833-11.834 3.228-3.227 1.913 1.912-3.228 3.228h-1.912zm-4.698 11.345 1.352-1.352 1.352 1.352v4.564h-2.704zm6.085-6.085 1.352-1.353h4.564v2.705h-4.564zm-1.387 3.346h1.913l3.228 3.228-1.913 1.912-3.228-3.227z" style="fill:%23fff;fill-opacity:1;stroke-width:9.12808;stroke-linecap:round;paint-order:fill markers stroke;stop-color:%23000"/></g></svg>');
45
- $alert-secondary-icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1.8em" viewBox="0 0 42.333 42.333"><g transform="rotate(45 -180.13 -610.203) scale(1.0529)"><circle cx="388.123" cy="-290.716" r="20.103" style="fill:rgba(#{to-rgb($secondary-text-emphasis)},1);stroke:none;stroke-width:1.32292;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#{to-rgb($secondary-text-emphasis)}"/><path d="M377.366-301.473v6.301l-4.456 4.456 4.456 4.456v6.302h6.302l4.456 4.456 4.456-4.456h6.301v-6.302l4.456-4.456-4.456-4.456v-6.301h-6.301l-4.456-4.456-4.456 4.456zm2.271 4.183 1.913-1.912 3.227 3.227v1.913h-1.912zm-2.163 5.222h4.565l1.352 1.352-1.352 1.353h-4.564zm9.297-9.297h2.705v4.564l-1.352 1.353-1.353-1.353zm.091 7.607 1.261 1.282 1.26-1.283-.015 1.798 1.798-.016-1.282 1.26 1.283 1.261-1.798-.015.016 1.798-1.26-1.282-1.261 1.283.015-1.799-1.798.016 1.282-1.26-1.283-1.26 1.799.015zm-7.225 9.617 3.228-3.228h1.912v1.913l-3.227 3.227zm11.833-11.834 3.228-3.227 1.913 1.912-3.228 3.228h-1.912zm-4.698 11.345 1.352-1.352 1.352 1.352v4.564h-2.704zm6.085-6.085 1.352-1.353h4.564v2.705h-4.564zm-1.387 3.346h1.913l3.228 3.228-1.913 1.912-3.228-3.227z" style="fill:%23fff;fill-opacity:1;stroke-width:9.12808;stroke-linecap:round;paint-order:fill markers stroke;stop-color:%23000"/></g></svg>');
46
- $alert-warning-icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1.8em" fill="rgba(#{to-rgb($warning-text-emphasis)},1)" viewBox="0 0 512 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M256 32c14.2 0 27.3 7.5 34.5 19.8l216 368c7.3 12.4 7.3 27.7 .2 40.1S486.3 480 472 480H40c-14.3 0-27.6-7.7-34.7-20.1s-7-27.8 .2-40.1l216-368C228.7 39.5 241.8 32 256 32zm0 128c-13.3 0-24 10.7-24 24V296c0 13.3 10.7 24 24 24s24-10.7 24-24V184c0-13.3-10.7-24-24-24zm32 224a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z"/></svg>');
47
- $alert-info-icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1.8em" fill="rgba(#{to-rgb($info-text-emphasis)},1)" viewBox="0 0 512 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM216 336h24V272H216c-13.3 0-24-10.7-24-24s10.7-24 24-24h48c13.3 0 24 10.7 24 24v88h8c13.3 0 24 10.7 24 24s-10.7 24-24 24H216c-13.3 0-24-10.7-24-24s10.7-24 24-24zm40-208a32 32 0 1 1 0 64 32 32 0 1 1 0-64z"/></svg>');
48
- $alert-danger-icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1.8em" fill="rgba(#{to-rgb($danger-text-emphasis)},1)" viewBox="0 0 512 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm0-384c13.3 0 24 10.7 24 24V264c0 13.3-10.7 24-24 24s-24-10.7-24-24V152c0-13.3 10.7-24 24-24zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z"/></svg>');
49
- $alert-success-icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1.8em" fill="rgba(#{to-rgb($success-text-emphasis)},1)" viewBox="0 0 512 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM369 209L241 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L335 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z"/></svg>');
46
+ $alert-primary-icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1rem" viewBox="0 0 42.333 42.333"><g transform="rotate(45 -180.13 -610.203) scale(1.0529)"><circle cx="388.123" cy="-290.716" r="20.103" style="fill:rgba(#{to-rgb($primary-text-emphasis)},1);stroke:none;stroke-width:1.32292;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#{to-rgb($primary-text-emphasis)}"/><path d="M377.366-301.473v6.301l-4.456 4.456 4.456 4.456v6.302h6.302l4.456 4.456 4.456-4.456h6.301v-6.302l4.456-4.456-4.456-4.456v-6.301h-6.301l-4.456-4.456-4.456 4.456zm2.271 4.183 1.913-1.912 3.227 3.227v1.913h-1.912zm-2.163 5.222h4.565l1.352 1.352-1.352 1.353h-4.564zm9.297-9.297h2.705v4.564l-1.352 1.353-1.353-1.353zm.091 7.607 1.261 1.282 1.26-1.283-.015 1.798 1.798-.016-1.282 1.26 1.283 1.261-1.798-.015.016 1.798-1.26-1.282-1.261 1.283.015-1.799-1.798.016 1.282-1.26-1.283-1.26 1.799.015zm-7.225 9.617 3.228-3.228h1.912v1.913l-3.227 3.227zm11.833-11.834 3.228-3.227 1.913 1.912-3.228 3.228h-1.912zm-4.698 11.345 1.352-1.352 1.352 1.352v4.564h-2.704zm6.085-6.085 1.352-1.353h4.564v2.705h-4.564zm-1.387 3.346h1.913l3.228 3.228-1.913 1.912-3.228-3.227z" style="fill:%23fff;fill-opacity:1;stroke-width:9.12808;stroke-linecap:round;paint-order:fill markers stroke;stop-color:%23000"/></g></svg>');
47
+ $alert-secondary-icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1rem" viewBox="0 0 42.333 42.333"><g transform="rotate(45 -180.13 -610.203) scale(1.0529)"><circle cx="388.123" cy="-290.716" r="20.103" style="fill:rgba(#{to-rgb($secondary-text-emphasis)},1);stroke:none;stroke-width:1.32292;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#{to-rgb($secondary-text-emphasis)}"/><path d="M377.366-301.473v6.301l-4.456 4.456 4.456 4.456v6.302h6.302l4.456 4.456 4.456-4.456h6.301v-6.302l4.456-4.456-4.456-4.456v-6.301h-6.301l-4.456-4.456-4.456 4.456zm2.271 4.183 1.913-1.912 3.227 3.227v1.913h-1.912zm-2.163 5.222h4.565l1.352 1.352-1.352 1.353h-4.564zm9.297-9.297h2.705v4.564l-1.352 1.353-1.353-1.353zm.091 7.607 1.261 1.282 1.26-1.283-.015 1.798 1.798-.016-1.282 1.26 1.283 1.261-1.798-.015.016 1.798-1.26-1.282-1.261 1.283.015-1.799-1.798.016 1.282-1.26-1.283-1.26 1.799.015zm-7.225 9.617 3.228-3.228h1.912v1.913l-3.227 3.227zm11.833-11.834 3.228-3.227 1.913 1.912-3.228 3.228h-1.912zm-4.698 11.345 1.352-1.352 1.352 1.352v4.564h-2.704zm6.085-6.085 1.352-1.353h4.564v2.705h-4.564zm-1.387 3.346h1.913l3.228 3.228-1.913 1.912-3.228-3.227z" style="fill:%23fff;fill-opacity:1;stroke-width:9.12808;stroke-linecap:round;paint-order:fill markers stroke;stop-color:%23000"/></g></svg>');
48
+ $alert-warning-icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1rem" fill="rgba(#{to-rgb($warning-text-emphasis)},1)" viewBox="0 0 512 512"><path d="M256 32c14.2 0 27.3 7.5 34.5 19.8l216 368c7.3 12.4 7.3 27.7 .2 40.1S486.3 480 472 480H40c-14.3 0-27.6-7.7-34.7-20.1s-7-27.8 .2-40.1l216-368C228.7 39.5 241.8 32 256 32zm0 128c-13.3 0-24 10.7-24 24V296c0 13.3 10.7 24 24 24s24-10.7 24-24V184c0-13.3-10.7-24-24-24zm32 224a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z"/></svg>');
49
+ $alert-info-icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1rem" fill="rgba(#{to-rgb($info-text-emphasis)},1)" viewBox="0 0 512 512"><path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM216 336h24V272H216c-13.3 0-24-10.7-24-24s10.7-24 24-24h48c13.3 0 24 10.7 24 24v88h8c13.3 0 24 10.7 24 24s-10.7 24-24 24H216c-13.3 0-24-10.7-24-24s10.7-24 24-24zm40-208a32 32 0 1 1 0 64 32 32 0 1 1 0-64z"/></svg>');
50
+ $alert-danger-icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1rem" fill="rgba(#{to-rgb($danger-text-emphasis)},1)" viewBox="0 0 512 512"><path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm0-384c13.3 0 24 10.7 24 24V264c0 13.3-10.7 24-24 24s-24-10.7-24-24V152c0-13.3 10.7-24 24-24zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z"/></svg>');
51
+ $alert-success-icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1rem" fill="rgba(#{to-rgb($success-text-emphasis)},1)" viewBox="0 0 512 512"><path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM369 209L241 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L335 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z"/></svg>');
52
+ $alert-light-icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1rem" fill="rgba(#{to-rgb($light-text-emphasis)},1)" viewBox="0 0 512 512"><path d="M471.6 21.7c-21.9-21.9-57.3-21.9-79.2 0L362.3 51.7l97.9 97.9 30.1-30.1c21.9-21.9 21.9-57.3 0-79.2L471.6 21.7zm-299.2 220c-6.1 6.1-10.8 13.6-13.5 21.9l-29.6 88.8c-2.9 8.6-.6 18.1 5.8 24.6s15.9 8.7 24.6 5.8l88.8-29.6c8.2-2.7 15.7-7.4 21.9-13.5L437.7 172.3 339.7 74.3 172.4 241.7zM96 64C43 64 0 107 0 160V416c0 53 43 96 96 96H352c53 0 96-43 96-96V320c0-17.7-14.3-32-32-32s-32 14.3-32 32v96c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H96z"/></svg>');
50
53
 
51
54
  // --------------------------------------------------------------------------------
52
55
  // Negative margins
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,263 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ width="1005.8321"
6
+ height="713.39667"
7
+ viewBox="0 0 266.1264 188.75286"
8
+ version="1.1"
9
+ id="svg1"
10
+ inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
11
+ sodipodi:docname="the-site-navigation-flow.svg"
12
+ inkscape:export-filename="the-site-navigation-flow.webp"
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="http://www.w3.org/2000/svg"
18
+ xmlns:svg="http://www.w3.org/2000/svg">
19
+ <sodipodi:namedview
20
+ id="namedview1"
21
+ pagecolor="#ffffff"
22
+ bordercolor="#666666"
23
+ borderopacity="1.0"
24
+ inkscape:showpageshadow="2"
25
+ inkscape:pageopacity="0.0"
26
+ inkscape:pagecheckerboard="0"
27
+ inkscape:deskcolor="#d1d1d1"
28
+ inkscape:document-units="px"
29
+ inkscape:zoom="1.5741593"
30
+ inkscape:cx="502.80807"
31
+ inkscape:cy="356.69833"
32
+ inkscape:window-width="3440"
33
+ inkscape:window-height="1371"
34
+ inkscape:window-x="0"
35
+ inkscape:window-y="0"
36
+ inkscape:window-maximized="1"
37
+ inkscape:current-layer="layer1"
38
+ showguides="false"
39
+ showgrid="false">
40
+ <sodipodi:guide
41
+ position="156.23168,90.10628"
42
+ orientation="1,0"
43
+ id="guide21"
44
+ inkscape:locked="false" />
45
+ </sodipodi:namedview>
46
+ <defs
47
+ id="defs1">
48
+ <marker
49
+ style="overflow:visible"
50
+ id="Triangle"
51
+ refX="0"
52
+ refY="0"
53
+ orient="auto-start-reverse"
54
+ inkscape:stockid="Triangle arrow"
55
+ markerWidth="1"
56
+ markerHeight="1"
57
+ viewBox="0 0 1 1"
58
+ inkscape:isstock="true"
59
+ inkscape:collect="always"
60
+ preserveAspectRatio="xMidYMid">
61
+ <path
62
+ transform="scale(0.5)"
63
+ style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
64
+ d="M 5.77,0 -2.88,5 V -5 Z"
65
+ id="path135" />
66
+ </marker>
67
+ </defs>
68
+ <g
69
+ inkscape:label="Layer 1"
70
+ inkscape:groupmode="layer"
71
+ id="layer1"
72
+ transform="translate(-23.347902,-9.8500099)">
73
+ <rect
74
+ style="opacity:1;fill:#ffffff;stroke:none;stroke-width:0.757062;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
75
+ id="rect23"
76
+ width="266.1264"
77
+ height="188.75287"
78
+ x="23.347902"
79
+ y="9.8500099"
80
+ inkscape:export-filename="the-site-navigation-flow.webp"
81
+ inkscape:export-xdpi="96"
82
+ inkscape:export-ydpi="96" />
83
+ <rect
84
+ style="opacity:0.2;fill:#ffffff;stroke:#000000;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
85
+ id="rect1"
86
+ width="20.700989"
87
+ height="20.700989"
88
+ x="69.227852"
89
+ y="18.23258" />
90
+ <rect
91
+ style="opacity:0.2;fill:#ffffff;stroke:#000000;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
92
+ id="rect3"
93
+ width="20.700989"
94
+ height="20.700989"
95
+ x="169.95142"
96
+ y="18.23258" />
97
+ <rect
98
+ style="opacity:0.2;fill:#ffffff;stroke:#000000;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
99
+ id="rect4"
100
+ width="20.700989"
101
+ height="20.700989"
102
+ x="33.538883"
103
+ y="72.915123" />
104
+ <rect
105
+ style="opacity:0.2;fill:#ffffff;stroke:#000000;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
106
+ id="rect5"
107
+ width="20.700989"
108
+ height="20.700989"
109
+ x="69.227852"
110
+ y="72.915123" />
111
+ <rect
112
+ style="opacity:0.2;fill:#ffffff;stroke:#000000;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
113
+ id="rect6"
114
+ width="20.700989"
115
+ height="20.700989"
116
+ x="105.23221"
117
+ y="72.915123" />
118
+ <rect
119
+ style="opacity:0.2;fill:#ffffff;stroke:#000000;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
120
+ id="rect10"
121
+ width="20.700989"
122
+ height="20.700989"
123
+ x="169.95142"
124
+ y="72.915123" />
125
+ <path
126
+ style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
127
+ d="M 145.17705,39.081755 V 157.69622"
128
+ id="path11" />
129
+ <path
130
+ style="opacity:0.2;fill:none;stroke:#000000;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
131
+ d="m 108.8707,118.38796 v -10.80007 h 71.65062 v 10.80007"
132
+ id="path12"
133
+ sodipodi:nodetypes="cccc" />
134
+ <path
135
+ style="opacity:0.2;fill:none;stroke:#000000;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
136
+ d="M 43.753033,72.520787 V 61.310592 h 71.650627 v 11.210195"
137
+ id="path13"
138
+ sodipodi:nodetypes="cccc" />
139
+ <path
140
+ style="opacity:0.2;fill:none;stroke:#000000;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
141
+ d="M 79.578344,39.081755 V 72.520787"
142
+ id="path14"
143
+ sodipodi:nodetypes="cc" />
144
+ <path
145
+ style="opacity:0.2;fill:none;stroke:#000000;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
146
+ d="M 180.30191,38.67329 V 72.517635"
147
+ id="path15"
148
+ sodipodi:nodetypes="cc" />
149
+ <rect
150
+ style="opacity:0.2;fill:#ffffff;stroke:#000000;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
151
+ id="rect15"
152
+ width="20.700989"
153
+ height="20.700989"
154
+ x="79.943916"
155
+ y="169.51932" />
156
+ <rect
157
+ style="opacity:0.2;fill:#ffffff;stroke:#000000;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
158
+ id="rect17"
159
+ width="20.700989"
160
+ height="20.700989"
161
+ x="151.79588"
162
+ y="169.51932" />
163
+ <path
164
+ style="opacity:0.2;fill:none;stroke:#000000;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
165
+ d="m 90.477778,168.82938 v -10.91459 h 71.650632 v 11.20766"
166
+ id="path17"
167
+ sodipodi:nodetypes="cccc" />
168
+ <path
169
+ style="fill:none;stroke:#a14f8c;stroke-width:1.32292;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Triangle)"
170
+ d="M 145.58274,39.183482 V 158.15036 h -19.36561 v 6.0111"
171
+ id="path19"
172
+ sodipodi:nodetypes="cccc" />
173
+ <rect
174
+ style="opacity:0.2;fill:#ffffff;stroke:#000000;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
175
+ id="rect7"
176
+ width="20.700989"
177
+ height="20.700989"
178
+ x="99.33905"
179
+ y="118.7833" />
180
+ <rect
181
+ style="fill:#ffffff;stroke:#efa724;stroke-width:1.32292;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
182
+ id="rect8"
183
+ width="20.700989"
184
+ height="20.700989"
185
+ x="134.82655"
186
+ y="118.7833" />
187
+ <rect
188
+ style="opacity:0.2;fill:#ffffff;stroke:#000000;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
189
+ id="rect9"
190
+ width="20.700989"
191
+ height="20.700989"
192
+ x="169.50171"
193
+ y="118.7833" />
194
+ <rect
195
+ style="fill:#ffffff;stroke:#a14f8c;stroke-width:1.32292;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
196
+ id="rect16"
197
+ width="20.700989"
198
+ height="20.700989"
199
+ x="115.8699"
200
+ y="169.51932" />
201
+ <rect
202
+ style="fill:#ffffff;stroke:#efa724;stroke-width:1.32292;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
203
+ id="rect2"
204
+ width="20.700989"
205
+ height="20.700989"
206
+ x="134.82655"
207
+ y="18.23258" />
208
+ <rect
209
+ style="opacity:0.2;fill:#ffffff;stroke:#000000;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
210
+ id="rect19"
211
+ width="20.700989"
212
+ height="20.700989"
213
+ x="186.73036"
214
+ y="169.72639" />
215
+ <rect
216
+ style="opacity:0.2;fill:#ffffff;stroke:#000000;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
217
+ id="rect20"
218
+ width="20.700989"
219
+ height="20.700989"
220
+ x="258.58234"
221
+ y="169.72639" />
222
+ <path
223
+ style="opacity:0.2;fill:none;stroke:#000000;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
224
+ d="m 197.26422,169.32952 v -11.20765 h 71.65063 v 11.20765"
225
+ id="path20"
226
+ sodipodi:nodetypes="cccc" />
227
+ <rect
228
+ style="opacity:0.2;fill:#ffffff;stroke:#000000;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
229
+ id="rect21"
230
+ width="20.700989"
231
+ height="20.700989"
232
+ x="222.65634"
233
+ y="169.72639" />
234
+ <path
235
+ style="opacity:0.2;fill:none;stroke:#000000;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
236
+ d="m 233.00684,169.32952 v -19.71728 h -52.54433 v -9.73098"
237
+ id="path21"
238
+ sodipodi:nodetypes="cccc" />
239
+ <path
240
+ style="fill:none;stroke:#a14f8c;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
241
+ d="m 137.14103,34.171069 h 16.07205"
242
+ id="path22" />
243
+ <path
244
+ style="fill:none;stroke:#a14f8c;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
245
+ d="m 137.14103,134.72179 h 16.07205"
246
+ id="path23" />
247
+ <path
248
+ style="font-weight:bold;font-size:9.19894px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';fill:#efa724;stroke-width:0.689921"
249
+ d="m 148.78764,31.802704 -2.87927,-6.439258 h -1.47183 l -2.87007,6.439258 h 1.52703 l 0.57033,-1.379841 h 2.98965 l 0.57034,1.379841 z m -3.62438,-4.976627 1.02108,2.465316 h -2.04217 z"
250
+ id="text1"
251
+ aria-label="A" />
252
+ <path
253
+ style="font-weight:bold;font-size:9.19894px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';fill:#efa724;stroke-width:0.689921"
254
+ d="m 147.14103,129.00501 c 0.52434,-0.27597 0.8555,-0.77271 0.8555,-1.41664 0,-1.00268 -0.8279,-1.6742 -2.43772,-1.6742 h -3.14604 v 6.43925 h 3.33002 c 1.6926,0 2.5757,-0.64392 2.5757,-1.75699 0,-0.80951 -0.45994,-1.36145 -1.17746,-1.59142 z m -1.7662,-1.96857 c 0.72672,0 1.12227,0.24837 1.12227,0.75431 0,0.50594 -0.39555,0.76351 -1.12227,0.76351 h -1.48103 v -1.51782 z m -1.48103,4.19471 v -1.59141 h 1.7386 c 0.77271,0 1.18667,0.25757 1.18667,0.8003 0,0.55194 -0.41396,0.79111 -1.18667,0.79111 z"
255
+ id="text2"
256
+ aria-label="B" />
257
+ <path
258
+ style="font-weight:bold;font-size:9.19894px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';fill:#a14f8c;stroke-width:0.689921"
259
+ d="m 126.63435,183.19983 c 1.12227,0 2.05136,-0.40475 2.65849,-1.14986 l -0.95669,-0.8831 c -0.43235,0.50594 -0.97508,0.76351 -1.61901,0.76351 -1.20506,0 -2.06056,-0.8463 -2.06056,-2.06056 0,-1.21426 0.8555,-2.06056 2.06056,-2.06056 0.64393,0 1.18666,0.25757 1.61901,0.75431 l 0.95669,-0.8831 c -0.60713,-0.73592 -1.53622,-1.14067 -2.64929,-1.14067 -2.00537,0 -3.4956,1.38904 -3.4956,3.33002 0,1.94097 1.49023,3.33001 3.4864,3.33001 z"
260
+ id="text3"
261
+ aria-label="C" />
262
+ </g>
263
+ </svg>
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-centos
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.49.0
4
+ version: 2.51.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - ReleaseBot
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-01-23 00:00:00.000000000 Z
11
+ date: 2024-02-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -40,7 +40,7 @@ dependencies:
40
40
  version: 2.4.0
41
41
  description:
42
42
  email:
43
- - group_59038887_bot_2eb25a4e4eb8985baf098c96a3c09784@noreply.gitlab.com
43
+ - group_59038887_bot_fc120f127801ad77c2ac15d1b7b075db@noreply.gitlab.com
44
44
  executables: []
45
45
  extensions: []
46
46
  extra_rdoc_files: []
@@ -63,6 +63,7 @@ files:
63
63
  - _includes/base/head.html
64
64
  - _includes/base/image.html
65
65
  - _includes/base/navbar.html
66
+ - _includes/base/pages.html
66
67
  - _includes/base/script.html
67
68
  - _includes/base/shortcuts.html
68
69
  - _includes/base/toc-accordion.html
@@ -209,6 +210,8 @@ files:
209
210
  - assets/img/anaconda.svg
210
211
  - assets/img/base/screenshot-base-default-layout.png
211
212
  - assets/img/base/screenshot-base-default-layout.svg
213
+ - assets/img/base/the-site-navigation-flow.svg
214
+ - assets/img/base/the-site-navigation-flow.webp
212
215
  - assets/img/centos-dynamicmsg-logo.svg
213
216
  - assets/img/centos-dynamicmsg-type.svg
214
217
  - assets/img/centos-dynamicmsg-whitelogo.svg