jekyll-theme-centos 2.52.0.beta.56 → 2.52.0.beta.57

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. checksums.yaml +4 -4
  2. data/_config.yml +1 -1
  3. data/_data/base/backtotop_schema.yml +6 -0
  4. data/_data/base/datatable_schema.yml +3 -3
  5. data/_data/base/head_schema.yml +19 -0
  6. data/_data/base/heading_anchor.yml +1 -3
  7. data/_data/base/heading_anchor_schema.yml +1 -1
  8. data/_data/base/highlight_schema.yml +30 -0
  9. data/_data/base/ogp.yml +23 -0
  10. data/_data/base/ogp_schema.yml +14 -22
  11. data/_includes/base/backtotop.html.liquid +10 -2
  12. data/_includes/base/copyvalue.html.liquid +10 -1
  13. data/_includes/base/datatable.html.liquid +8 -3
  14. data/_includes/base/fontawesome.html.liquid +2 -2
  15. data/_includes/base/{partials/footer.html.liquid → footer.html.liquid} +2 -2
  16. data/_includes/base/{partials/head.html.liquid → head.html.liquid} +54 -14
  17. data/_includes/base/heading_anchor.html.liquid +8 -3
  18. data/_includes/base/highlight.html.liquid +14 -9
  19. data/_includes/base/{partials/navbar.html.liquid → navbar.html.liquid} +3 -3
  20. data/_includes/base/navindex.html.liquid +2 -2
  21. data/_includes/base/ogp.html.liquid +58 -56
  22. data/_layouts/base/default.html +7 -10
  23. data/_sass/base/_customization.scss +27 -13
  24. data/assets/img/base/example-ogp-image.png +0 -0
  25. data/assets/img/base/example-ogp-image.svg +297 -0
  26. data/assets/img/base/page-layout-default.png +0 -0
  27. data/assets/img/base/page-layout-default.svg +4 -4
  28. data/assets/img/base/page-with-ogp.png +0 -0
  29. data/assets/img/base/page-with-ogp.svg +333 -300
  30. data/assets/img/centos-social-share.png +0 -0
  31. data/assets/js/base/backtotop.js +7 -10
  32. data/assets/js/base/copyvalue.js +96 -94
  33. data/assets/js/base/datatable.js +28 -42
  34. data/assets/js/base/heading-anchor.js +53 -53
  35. data/assets/js/base/highlight.js +9 -3
  36. data/assets/js/base/init-tooltips.js +10 -4
  37. metadata +15 -13
  38. data/_data/base/partials/head_schema.yml +0 -47
  39. data/_includes/base/partials/script.html.liquid +0 -47
  40. /data/_data/base/{partials/content.yml → content.yml} +0 -0
  41. /data/_data/base/{partials/content_schema.yml → content_schema.yml} +0 -0
  42. /data/_data/base/{partials/footer.yml → footer.yml} +0 -0
  43. /data/_data/base/{partials/footer_schema.yml → footer_schema.yml} +0 -0
  44. /data/_data/base/{partials/navbar.yml → navbar.yml} +0 -0
  45. /data/_data/base/{partials/navbar_schema.yml → navbar_schema.yml} +0 -0
  46. /data/_data/base/{partials/script_schema.yml → script_schema.yml} +0 -0
@@ -21,11 +21,19 @@ Optional Inputs:
21
21
  - with_ogp_data.og.*, with_ogp_data.twitter.*: OG/Twitter property overrides
22
22
  - page.excerpt, page.title_lead: Fallback for description
23
23
  - site.description: Site-level description fallback
24
+ - page.locale: BCP 47 locale code set by jekyll-l10n on localized pages
24
25
 
25
26
  Data Source Hierarchy:
26
- - with_ogp_data values always take precedence
27
- - Default image: /assets/img/centos-social-share.png
28
- - Default image alt: "The CentOS Project"
27
+ - og:type: with_ogp_data.og.type schema default → 'website'
28
+ - og:locale: page.locale (jekyll-l10n) → with_ogp_data.locale → schema default → 'en_US'
29
+ - og:image:type: with_ogp_data.og.image.type schema default → 'image/png'
30
+ - og:image:width: with_ogp_data.og.image.width → schema default → 1200
31
+ - og:image:height: with_ogp_data.og.image.height → schema default → 630
32
+ - og:image:alt: with_ogp_data[property].image.alt → schema default → 'The CentOS Project'
33
+ - twitter:card: with_ogp_data.twitter.card → schema default → 'summary_large_image'
34
+ - twitter:site: with_ogp_data.twitter.site → schema default → '@CentOS'
35
+ - twitter:creator: with_ogp_data.twitter.creator → schema default → '@CentOS'
36
+ - Default image path: /assets/img/centos-social-share.png
29
37
  ================================================================================
30
38
  {% endcomment %}
31
39
 
@@ -44,89 +52,83 @@ Data Source Hierarchy:
44
52
  {%- if with_ogp %}
45
53
 
46
54
  {%- comment %} === Presentation === {% endcomment %}
55
+ {%- comment %} --- Schema shorthands --- {% endcomment %}
56
+ {%- assign with_ogp_og_image_schema = with_ogp_schema.og.properties.image.properties %}
57
+ {%- assign with_ogp_twitter_schema = with_ogp_schema.twitter.properties %}
58
+
59
+ {%- comment %} --- Shared image metadata (og and twitter use the same image) --- {% endcomment %}
60
+ {%- assign ogp_image_type = with_ogp_data.og.image.type | default: with_ogp_og_image_schema.type.default | default: 'image/png' %}
61
+ {%- assign ogp_image_width = with_ogp_data.og.image.width | default: with_ogp_og_image_schema.width.default | default: 1200 %}
62
+ {%- assign ogp_image_height = with_ogp_data.og.image.height | default: with_ogp_og_image_schema.height.default | default: 630 %}
63
+
47
64
  {%- comment %} --- Defaults --- {% endcomment %}
48
65
  {%- assign ogp_og_type = with_ogp_data.og.type | default: with_ogp_schema.og.properties.type.default %}
66
+ {%- assign ogp_locale = page.locale | default: with_ogp_data.locale | default: with_ogp_schema.locale.default | default: 'en_US' %}
67
+ {%- assign ogp_twitter_card = with_ogp_data.twitter.card
68
+ | default: with_ogp_twitter_schema.card.default
69
+ | default: 'summary_large_image' %}
70
+ {%- assign ogp_twitter_site = with_ogp_data.twitter.site
71
+ | default: with_ogp_twitter_schema.site.default
72
+ | default: '@CentOS' %}
73
+ {%- assign ogp_twitter_creator = with_ogp_data.twitter.creator
74
+ | default: with_ogp_twitter_schema.creator.default
75
+ | default: '@CentOS' %}
49
76
 
50
77
  {%- comment %} --- Common attributes for both `og` and `twitter` properties --- {% endcomment %}
51
78
  {%- assign properties = "og,twitter" | split: "," %}
52
79
  {%- for property in properties %}
80
+ {%- if property == "twitter" %}{%- assign meta_attr = "name" %}{%- else %}{%- assign meta_attr = "property" %}{%- endif %}
81
+
82
+ {%- comment %} --- Twitter Card: required first --- {% endcomment %}
83
+ {%- if property == "twitter" %}
84
+ <meta name="twitter:card" content="{{ ogp_twitter_card }}" />
85
+ <meta name="twitter:site" content="{{ ogp_twitter_site }}" />
86
+ <meta name="twitter:creator" content="{{ ogp_twitter_creator }}" />
87
+ {%- endif %}
53
88
 
54
89
  {%- comment %} --- Title --- {% endcomment %}
55
90
  {%- if with_ogp_data[property].title %}
56
- <meta property="{{ property }}:title" content="{{ page.title }}" />
57
- {%- else %}
91
+ <meta {{ meta_attr }}="{{ property }}:title" content="{{ page.title }}" />
92
+ {%- endif %}
93
+
94
+ {%- comment %} --- OG type (after title, before url) --- {% endcomment %}
95
+ {%- if property == "og" %}
96
+ <meta property="og:type" content="{{ ogp_og_type }}" />
58
97
  {%- endif %}
59
98
 
60
99
  {%- comment %} --- URL --- {% endcomment %}
61
100
  {%- if with_ogp_data[property].url %}
62
- <meta property="{{ property }}:url" content="{{ site.url }}{{ site.baseurl }}{{ page.url }}" />
101
+ <meta {{ meta_attr }}="{{ property }}:url" content="{{ site.url }}{{ site.baseurl }}{{ page.url }}" />
63
102
  {%- endif %}
64
103
 
65
104
  {%- comment %} --- Description --- {% endcomment %}
66
105
  {%- if with_ogp_data[property].description %}
67
- {%- if page.excrept %}
68
- <meta property="{{ property }}:description" content="{{ site.excrept }}" />
106
+ {%- if page.excerpt %}
107
+ <meta {{ meta_attr }}="{{ property }}:description" content="{{ page.excerpt }}" />
69
108
  {%- elsif page.title_lead %}
70
- <meta property="{{ property }}:description" content="{{ page.title_lead }}" />
109
+ <meta {{ meta_attr }}="{{ property }}:description" content="{{ page.title_lead }}" />
71
110
  {%- else %}
72
- <meta property="{{ property }}:description" content="{{ site.description }}" />
111
+ <meta {{ meta_attr }}="{{ property }}:description" content="{{ site.description }}" />
73
112
  {%- endif %}
74
113
  {%- endif %}
75
114
 
76
115
  {%- comment %} --- Image --- {% endcomment %}
77
116
  {%- if with_ogp_data[property].image %}
78
- <meta property="{{ property }}:image" content="{{ site.url }}{{ site.baseurl }}/assets/img/centos-social-share.png" />
117
+ <meta {{ meta_attr }}="{{ property }}:image" content="{{ site.url }}{{ site.baseurl }}/assets/img/centos-social-share.png" />
79
118
  {%- if property == "og" %}
80
- <meta property="{{ property }}:image:secure_url" content="{{ site.url }}{{ site.baseurl }}/assets/img/centos-social-share.png" />
81
- <meta property="{{ property }}:image:type" content="image/png" />
82
- <meta property="{{ property }}:image:width" content="1200" />
83
- <meta property="{{ property }}:image:height" content="630" />
119
+ <meta {{ meta_attr }}="{{ property }}:image:secure_url" content="{{ site.url }}{{ site.baseurl }}/assets/img/centos-social-share.png" />
120
+ <meta {{ meta_attr }}="{{ property }}:image:type" content="{{ ogp_image_type }}" />
121
+ <meta {{ meta_attr }}="{{ property }}:image:width" content="{{ ogp_image_width }}" />
122
+ <meta {{ meta_attr }}="{{ property }}:image:height" content="{{ ogp_image_height }}" />
84
123
  {%- endif %}
124
+ <meta {{ meta_attr }}="{{ property }}:image:alt" content="{{ with_ogp_data[property].image.alt | default: with_ogp_og_image_schema.alt.default | default: 'The CentOS Project' }}" />
85
125
  {%- endif %}
86
126
 
87
- {%- comment %} --- Image alternative text --- {% endcomment %}
88
- {%- if with_ogp_data[property].image.alt == nil %}
89
- <meta property="{{ property }}:image:alt" content="The CentOS Project" />
127
+ {%- comment %} --- OG locale (after image) --- {% endcomment %}
128
+ {%- if property == "og" %}
129
+ <meta property="og:locale" content="{{ ogp_locale }}" />
90
130
  {%- endif %}
91
131
 
92
- {%- comment %} --- Override common attributes in both `og` and `twitter` properties --- {% endcomment %}
93
- {%- if property[0] == "og" %}
94
- {%- for attribute in property[1] %}
95
- {%- if attribute[0] == "image" or attribute[0] == "audio" or attribute[0] == "video" %}
96
- {%- for item in attribute[1] %}
97
- <meta property="{{ property[0] }}:{{ attribute[0] }}:{{ item[0] }}" content="{{ item[1] }}" />
98
- {%- endfor %}
99
- {%- else %}
100
- <meta property="{{ property[0] }}:{{ attribute[0] }}" content="{{ attribute[1] }}" />
101
- {%- endif %}
102
- {%- endfor %}
103
- {%- elsif property[0] == "twitter" %}
104
- {%- for attribute in property[1] %}
105
- {%- if attribute[0] == "image" or attribute[0] == "site" or attribute[0] == "creator" %}
106
- {%- for item in attribute[1] %}
107
- <meta property="{{ property[0] }}:{{ attribute[0] }}:{{ item[0] }}" content="{{ item[1] }}" />
108
- {%- endfor %}
109
- {%- else %}
110
- <meta property="{{ property[0] }}:{{ attribute[0] }}" content="{{ attribute[1] }}" />
111
- {%- endif %}
112
- {%- endfor %}
113
- {%- endif %}
114
132
  {%- endfor %}
115
133
 
116
- {%- comment %} --- Specific attributes for `og` property --- {% endcomment %}
117
- {%- if ogp_og_type == nil %}
118
- <meta property="og:type" content="website" />
119
- {%- endif %}
120
-
121
- {%- comment %} --- Specific attributes for `twitter` property --- {% endcomment %}
122
- {%- if with_ogp_data.twitter.card == nil %}
123
- <meta property="twitter:card" content="summary_large_image" />
124
- {%- endif %}
125
- {%- if with_ogp_data.twitter.site.id == nil %}
126
- <meta property="twitter:site:id" content="@CentOS" />
127
- {%- endif %}
128
- {%- if with_ogp_data.twitter.creator.id == nil %}
129
- <meta property="twitter:creator:id" content="@CentOS" />
130
- {%- endif %}
131
-
132
134
  {% endif %}
@@ -1,9 +1,9 @@
1
1
  <!doctype html>
2
2
  <html lang="{{ page.lang | default: 'en' }}"{% if page.with_ogp %} prefix="og: https://ogp.me/ns#"{% endif %}>
3
- {% include base/partials/head.html.liquid -%}
3
+ {% include base/head.html.liquid -%}
4
4
  <body id="top" class="bg-body">
5
5
 
6
- {% include base/partials/navbar.html.liquid -%}
6
+ {% include base/navbar.html.liquid -%}
7
7
 
8
8
  {% include base/project.html.liquid %}
9
9
 
@@ -27,7 +27,7 @@
27
27
 
28
28
  {% if page.with_title %}
29
29
  <div class="row mb-3">
30
- <div class="{{ site.data.base.partials.content.class | default: 'col' }}">
30
+ <div class="{{ site.data.base.content.class | default: 'col' }}">
31
31
  {% include base/title.html.liquid %}
32
32
  </div>
33
33
  </div>
@@ -35,7 +35,7 @@
35
35
 
36
36
  {% if page.with_artwork %}
37
37
  <div class="row mb-3">
38
- <div class="{{ site.data.base.partials.content.class | default: 'col' }}">
38
+ <div class="{{ site.data.base.content.class | default: 'col' }}">
39
39
  {% include base/artwork.html.liquid %}
40
40
  </div>
41
41
  </div>
@@ -43,7 +43,7 @@
43
43
 
44
44
  {% if page.with_toc %}
45
45
  <div class="row mb-3">
46
- <div class="{{ site.data.base.partials.content.class | default: 'col' }}">
46
+ <div class="{{ site.data.base.content.class | default: 'col' }}">
47
47
  {% include base/toc.html.liquid %}
48
48
  </div>
49
49
  </div>
@@ -51,7 +51,7 @@
51
51
 
52
52
  {% if page.with_content %}
53
53
  <div class="row mb-3">
54
- <div class="{{ site.data.base.partials.content.class | default: 'col' }} content">
54
+ <div class="{{ site.data.base.content.class | default: 'col' }} content">
55
55
  {{ content }}
56
56
  </div>
57
57
  </div>
@@ -61,11 +61,8 @@
61
61
 
62
62
  {% if page.with_footer %}
63
63
  <footer class="footer small bg-dark text-centos-purple-100 pt-5">
64
- {% include base/partials/footer.html.liquid -%}
64
+ {% include base/footer.html.liquid -%}
65
65
  </footer>
66
66
  {% endif %}
67
-
68
- {% include base/partials/script.html.liquid -%}
69
-
70
67
  </body>
71
68
  </html>
@@ -75,14 +75,12 @@ body {
75
75
  li {
76
76
  list-style: none;
77
77
  }
78
- li:before {
79
- font-family: FontAwesome;
80
- font-size: .35rem;
81
- color: $body-color;
78
+ li::before {
79
+ content: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='6' height='6'><circle cx='256' cy='256' r='256' fill='rgba(#{to-rgb($body-color)},1)'/></svg>");
80
+ vertical-align: middle;
82
81
  position: relative;
83
82
  left: -0.5rem;
84
83
  top: -0.2rem;
85
- content:"\f111";
86
84
  }
87
85
  }
88
86
 
@@ -179,8 +177,8 @@ main {
179
177
  // -------------------------------------------------------------------------------
180
178
  // Heading Anchor Component
181
179
  // -------------------------------------------------------------------------------
182
- // :has() guard: position context + right slot for the anchor icon.
183
- // padding-right reserves space so the icon never overlaps heading text.
180
+ // :has() guard: position context for the anchor icon.
181
+ // No padding change the icon translates left of the text start to preserve heading alignment.
184
182
  .content > h1:has(.heading-anchor),
185
183
  .content > h2:has(.heading-anchor),
186
184
  .content > h3:has(.heading-anchor),
@@ -188,7 +186,6 @@ main {
188
186
  .content > h5:has(.heading-anchor),
189
187
  .content > h6:has(.heading-anchor) {
190
188
  position: relative;
191
- padding-right: 1.5rem;
192
189
  }
193
190
  .content > h1 .heading-anchor,
194
191
  .content > h2 .heading-anchor,
@@ -197,16 +194,33 @@ main {
197
194
  .content > h5 .heading-anchor,
198
195
  .content > h6 .heading-anchor {
199
196
  position: absolute;
200
- right: 0;
201
- top: 50%;
202
- transform: translateY(-50%);
203
- font-size: $font-size-base;
197
+ left: 0;
198
+ top: 0;
199
+ height: 1lh;
200
+ display: flex;
201
+ align-items: center;
202
+ transform: translateX(-100%);
203
+ font-size: 1em;
204
204
  margin-left: 0 !important;
205
205
  margin-right: 0 !important;
206
- opacity: 0.2;
206
+ opacity: 0;
207
207
  pointer-events: auto;
208
208
  text-decoration: none;
209
209
  }
210
+ .content > h1 .heading-anchor > i,
211
+ .content > h1 .heading-anchor > svg,
212
+ .content > h2 .heading-anchor > i,
213
+ .content > h2 .heading-anchor > svg,
214
+ .content > h3 .heading-anchor > i,
215
+ .content > h3 .heading-anchor > svg,
216
+ .content > h4 .heading-anchor > i,
217
+ .content > h4 .heading-anchor > svg,
218
+ .content > h5 .heading-anchor > i,
219
+ .content > h5 .heading-anchor > svg,
220
+ .content > h6 .heading-anchor > i,
221
+ .content > h6 .heading-anchor > svg {
222
+ font-size: 0.5em;
223
+ }
210
224
  .content > h1:hover .heading-anchor,
211
225
  .content > h2:hover .heading-anchor,
212
226
  .content > h3:hover .heading-anchor,
@@ -0,0 +1,297 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ width="784.20868"
6
+ height="468.31464"
7
+ viewBox="0 0 207.48855 123.90824"
8
+ version="1.1"
9
+ id="svg1"
10
+ inkscape:version="1.4.4 (dcaf3e7d9e, 2026-05-05)"
11
+ sodipodi:docname="example-ogp-image.svg"
12
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
14
+ xmlns:xlink="http://www.w3.org/1999/xlink"
15
+ xmlns="http://www.w3.org/2000/svg"
16
+ xmlns:svg="http://www.w3.org/2000/svg">
17
+ <sodipodi:namedview
18
+ id="namedview1"
19
+ pagecolor="#ffffff"
20
+ bordercolor="#000000"
21
+ borderopacity="0.25"
22
+ inkscape:showpageshadow="false"
23
+ inkscape:pageopacity="0.0"
24
+ inkscape:pagecheckerboard="false"
25
+ inkscape:deskcolor="#d1d1d1"
26
+ inkscape:document-units="px"
27
+ borderlayer="false"
28
+ showborder="false"
29
+ inkscape:zoom="1.4142136"
30
+ inkscape:cx="396.33334"
31
+ inkscape:cy="304.40946"
32
+ inkscape:window-width="3440"
33
+ inkscape:window-height="1403"
34
+ inkscape:window-x="0"
35
+ inkscape:window-y="0"
36
+ inkscape:window-maximized="1"
37
+ inkscape:current-layer="layer1"
38
+ showgrid="false" />
39
+ <defs
40
+ id="defs1">
41
+ <marker
42
+ style="overflow:visible"
43
+ id="Triangle"
44
+ refX="0"
45
+ refY="0"
46
+ orient="auto-start-reverse"
47
+ inkscape:stockid="Triangle arrow"
48
+ markerWidth="1"
49
+ markerHeight="1"
50
+ viewBox="0 0 1 1"
51
+ inkscape:isstock="true"
52
+ inkscape:collect="always"
53
+ preserveAspectRatio="xMidYMid">
54
+ <path
55
+ transform="scale(0.5)"
56
+ style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
57
+ d="M 5.77,0 -2.88,5 V -5 Z"
58
+ id="path135" />
59
+ </marker>
60
+ <marker
61
+ style="overflow:visible"
62
+ id="Triangle-7"
63
+ refX="0"
64
+ refY="0"
65
+ orient="auto-start-reverse"
66
+ inkscape:stockid="Triangle arrow"
67
+ markerWidth="1"
68
+ markerHeight="1"
69
+ viewBox="0 0 1 1"
70
+ inkscape:isstock="true"
71
+ inkscape:collect="always"
72
+ preserveAspectRatio="xMidYMid">
73
+ <path
74
+ transform="scale(0.5)"
75
+ style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
76
+ d="M 5.77,0 -2.88,5 V -5 Z"
77
+ id="path135-5" />
78
+ </marker>
79
+ <clipPath
80
+ clipPathUnits="userSpaceOnUse"
81
+ id="clipPath28">
82
+ <path
83
+ id="path29"
84
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.33797;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
85
+ d="m 306.371,-325.03536 c -8.65176,8.97009 -11.52002,30.40853 -12.46598,42.74731 l 89.64143,89.64143 c 2.18643,-9.3018 5.56546,-18.72181 10.73522,-23.89156 12.57262,-12.57263 37.71574,-1.97899 50.28856,-14.55181 12.57279,-12.57279 1.97911,-37.71587 14.55184,-50.28859 12.57274,-12.57274 37.71593,-1.97918 50.28858,-14.55183 12.57282,-12.57282 1.97974,-37.7165 14.55249,-50.28924 12.57276,-12.57276 37.79402,-1.59733 50.28856,-14.55181 8.65178,-8.97012 11.52005,-30.40856 12.46598,-42.74732 l -89.64207,-89.64207 c -2.18647,9.30184 -5.5648,18.72243 -10.73455,23.89218 -12.57265,12.57265 -37.7164,1.97965 -50.28925,14.55249 -12.57272,12.57272 -1.97908,37.71585 -14.55183,50.28859 -12.57272,12.57272 -37.71594,1.97918 -50.28856,14.55181 -12.57288,12.57288 -1.97915,37.7159 -14.55183,50.28858 -12.57279,12.57279 -37.79403,1.59733 -50.28859,14.55184 z"
86
+ sodipodi:nodetypes="cccssssssccsssssc" />
87
+ </clipPath>
88
+ </defs>
89
+ <g
90
+ inkscape:label="Layer 1"
91
+ inkscape:groupmode="layer"
92
+ id="layer1"
93
+ transform="translate(65.93618,-38.073772)">
94
+ <rect
95
+ style="opacity:1;fill:#ffffff;stroke:none;stroke-width:0.437536;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
96
+ id="rect8"
97
+ width="207.48854"
98
+ height="123.90825"
99
+ x="-65.93618"
100
+ y="38.073772" />
101
+ <g
102
+ id="g9"
103
+ transform="translate(0,17.991666)" />
104
+ <rect
105
+ style="fill:#f6edf4;stroke-width:1.38883;stroke-linecap:round;stroke-linejoin:round"
106
+ id="rect1"
107
+ width="173.21919"
108
+ height="90.940079"
109
+ x="-49.172928"
110
+ y="54.557861" />
111
+ <rect
112
+ style="fill:#ecdce8;stroke-width:0.798653;stroke-linecap:round;stroke-linejoin:round"
113
+ id="rect2"
114
+ width="72.174667"
115
+ height="72.174667"
116
+ x="1.3493359"
117
+ y="63.940567" />
118
+ <g
119
+ id="g12"
120
+ transform="matrix(0.54557227,0,0,0.54557227,-14.32524,-102.55171)">
121
+ <g
122
+ id="g21"
123
+ transform="translate(0,-2.1774013)">
124
+ <g
125
+ id="g8"
126
+ transform="translate(0,34.897769)">
127
+ <path
128
+ style="opacity:1;fill:#c795ba;stroke:#a14f8c;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;marker-start:url(#Triangle);marker-end:url(#Triangle)"
129
+ d="M 32.334443,238.75956 H 157.28598"
130
+ id="path4"
131
+ sodipodi:nodetypes="cc" />
132
+ <rect
133
+ style="fill:#ffffff;stroke:none;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
134
+ id="rect7-7"
135
+ width="27.408489"
136
+ height="11.22532"
137
+ x="81.105965"
138
+ y="233.1469" />
139
+ <text
140
+ xml:space="preserve"
141
+ style="font-size:8.35316px;line-height:1.25;font-family:'SauceCodePro Nerd Font Mono';-inkscape-font-specification:'SauceCodePro Nerd Font Mono';writing-mode:lr-tb;direction:ltr;opacity:1;fill:#a14f8c;stroke:none;stroke-width:1.82554;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
142
+ x="87.384254"
143
+ y="241.42421"
144
+ id="text5"><tspan
145
+ sodipodi:role="line"
146
+ id="tspan5"
147
+ style="font-size:8.35316px;fill:#a14f8c;stroke:none;stroke-width:1.82554"
148
+ x="87.384254"
149
+ y="241.42421">512</tspan></text>
150
+ </g>
151
+ <path
152
+ style="opacity:1;fill:none;stroke:#a14f8c;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
153
+ d="m 29.127397,262.85374 v 21.60717"
154
+ id="path9"
155
+ sodipodi:nodetypes="cc" />
156
+ <use
157
+ x="0"
158
+ y="0"
159
+ xlink:href="#path9"
160
+ id="use9"
161
+ transform="translate(131.49792)" />
162
+ </g>
163
+ </g>
164
+ <g
165
+ id="g11"
166
+ transform="matrix(0.54557227,0,0,0.54557227,-14.32524,19.301321)">
167
+ <path
168
+ style="fill:#c795ba;stroke:#a14f8c;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;marker-start:url(#Triangle);marker-end:url(#Triangle)"
169
+ d="M -61.098001,247.80267 H 250.85072"
170
+ id="path3"
171
+ sodipodi:nodetypes="cc" />
172
+ <rect
173
+ style="fill:#ffffff;stroke:none;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
174
+ id="rect7"
175
+ width="27.408489"
176
+ height="11.22532"
177
+ x="81.172112"
178
+ y="242.19" />
179
+ <text
180
+ xml:space="preserve"
181
+ style="font-size:8.35316px;line-height:1.25;font-family:'SauceCodePro Nerd Font Mono';-inkscape-font-specification:'SauceCodePro Nerd Font Mono';writing-mode:lr-tb;direction:ltr;fill:#a14f8c;stroke:none;stroke-width:1.82554;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
182
+ x="84.743973"
183
+ y="250.46733"
184
+ id="text6"><tspan
185
+ sodipodi:role="line"
186
+ id="tspan6"
187
+ style="font-size:8.35316px;fill:#a14f8c;stroke:none;stroke-width:1.82554"
188
+ x="84.743973"
189
+ y="250.46733">1200</tspan></text>
190
+ <use
191
+ x="0"
192
+ y="0"
193
+ xlink:href="#use9"
194
+ id="use10"
195
+ transform="translate(92.604164,-25.85466)" />
196
+ <use
197
+ x="0"
198
+ y="0"
199
+ xlink:href="#use10"
200
+ id="use11"
201
+ transform="translate(-316.70625)" />
202
+ </g>
203
+ <g
204
+ id="g18"
205
+ transform="matrix(0.54557227,0,0,0.54557227,-251.78414,30.964484)">
206
+ <g
207
+ id="g23"
208
+ transform="translate(-5.4337012)">
209
+ <path
210
+ style="fill:#c795ba;stroke:#a14f8c;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;marker-start:url(#Triangle-7);marker-end:url(#Triangle-7)"
211
+ d="M 360.31531,188.93242 V 64.245455"
212
+ id="path4-6"
213
+ sodipodi:nodetypes="cc" />
214
+ <rect
215
+ style="fill:#ffffff;stroke:none;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
216
+ id="rect7-0"
217
+ width="22.116842"
218
+ height="12.548244"
219
+ x="349.2569"
220
+ y="120.31481" />
221
+ <path
222
+ style="fill:none;stroke:#a14f8c;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
223
+ d="M 349.51173,192.3379 H 371.1189"
224
+ id="use14"
225
+ sodipodi:nodetypes="cc" />
226
+ <use
227
+ x="0"
228
+ y="0"
229
+ xlink:href="#use14"
230
+ id="use15"
231
+ transform="translate(0,-131.49792)" />
232
+ <text
233
+ xml:space="preserve"
234
+ style="font-size:8.35316px;line-height:1.25;font-family:'SauceCodePro Nerd Font Mono';-inkscape-font-specification:'SauceCodePro Nerd Font Mono';text-align:center;writing-mode:lr-tb;direction:ltr;text-anchor:middle;fill:#a14f8c;stroke:none;stroke-width:1.82554;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
235
+ x="360.4072"
236
+ y="129.2536"
237
+ id="use18"><tspan
238
+ sodipodi:role="line"
239
+ id="tspan18"
240
+ style="font-size:8.35316px;fill:#a14f8c;stroke:none;stroke-width:1.82554"
241
+ x="360.4072"
242
+ y="129.2536">512</tspan></text>
243
+ </g>
244
+ </g>
245
+ <g
246
+ id="g22"
247
+ transform="matrix(0.54557227,0,0,0.54557227,-32.211101,15.224925)">
248
+ <path
249
+ style="fill:#c795ba;stroke:#a14f8c;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;marker-start:url(#Triangle-7);marker-end:url(#Triangle-7)"
250
+ d="M 303.58294,235.31785 V 75.559279"
251
+ id="path5"
252
+ sodipodi:nodetypes="cc" />
253
+ <rect
254
+ style="fill:#ffffff;stroke:none;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
255
+ id="rect15"
256
+ width="22.116842"
257
+ height="12.548244"
258
+ x="292.52451"
259
+ y="149.16444" />
260
+ <text
261
+ xml:space="preserve"
262
+ style="font-size:8.35316px;line-height:1.25;font-family:'SauceCodePro Nerd Font Mono';-inkscape-font-specification:'SauceCodePro Nerd Font Mono';text-align:center;writing-mode:lr-tb;direction:ltr;text-anchor:middle;fill:#a14f8c;stroke:none;stroke-width:1.82554;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
263
+ x="303.55789"
264
+ y="158.10323"
265
+ id="use16"><tspan
266
+ sodipodi:role="line"
267
+ id="tspan16"
268
+ style="font-size:8.35316px;fill:#a14f8c;stroke:none;stroke-width:1.82554"
269
+ x="303.55789"
270
+ y="158.10323">630</tspan></text>
271
+ <path
272
+ style="fill:none;stroke:#a14f8c;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
273
+ d="M 292.09857,72.491693 H 315.0673"
274
+ id="use21"
275
+ sodipodi:nodetypes="cc" />
276
+ <use
277
+ x="0"
278
+ y="0"
279
+ xlink:href="#use21"
280
+ id="use22"
281
+ transform="translate(5e-6,165.89375)" />
282
+ </g>
283
+ <g
284
+ id="g27"
285
+ transform="matrix(0.24005696,0.24005696,-0.24005696,0.24005696,-125.52333,100.61498)"
286
+ inkscape:export-filename="/home/areguera/Pictures/centos-symbol-v20.png"
287
+ inkscape:export-xdpi="10.11"
288
+ inkscape:export-ydpi="10.11"
289
+ style="fill:#ffffff;fill-opacity:1;stroke-width:3.80952"
290
+ clip-path="url(#clipPath28)">
291
+ <path
292
+ id="path27"
293
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:5.0397;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
294
+ d="m 372.92961,-303.88054 a 20.103001,20.103493 0 0 0 -4.90893,13.16408 20.103001,20.103493 0 0 0 20.10242,20.10507 20.103001,20.103493 0 0 0 20.10374,-20.10375 20.103001,20.103493 0 0 0 -20.10374,-20.10374 20.103001,20.103493 0 0 0 -15.19349,6.93834 z m 4.43562,2.40753 h 6.30374 l 4.45545,-4.45545 4.45545,4.45545 h 6.3011 v 6.3011 l 4.45677,4.45677 -4.45545,4.45546 -0.001,6.30241 h -6.3011 l -4.45545,4.45546 -4.45678,-4.45678 h -6.30109 v -6.30109 l -4.45545,-4.45546 4.45545,-4.45545 z m 2.27135,4.18311 3.22723,3.22723 1.91307,0.001 10e-4,-1.91307 -3.22855,-3.22855 z m -2.16294,5.22226 0.001,2.70368 h 4.56387 l 1.3525,-1.3525 -1.3525,-1.3525 z m 9.29696,-9.29695 v 4.56386 l 1.3525,1.3525 1.3525,-1.3525 v -4.56386 z m 0.0912,7.606 0.0172,1.79936 -1.79805,-0.0159 1.28243,1.25863 -1.28243,1.26128 1.79805,-0.0159 -0.0145,1.79937 1.25996,-1.28375 1.25995,1.28375 -0.0145,-1.79937 1.79672,0.0145 -1.28243,-1.25864 1.28243,-1.26127 -1.79804,0.0159 0.0159,-1.79804 -1.26127,1.28243 z m -7.22391,9.6169 1.91174,1.91175 3.22723,-3.22723 v -1.91175 h -1.91175 z m 11.83273,-11.83273 v 1.91175 h 1.91174 l 3.22723,-3.22723 -1.91175,-1.91175 z m -4.69872,11.34356 -0.001,4.56518 h 2.705 v -4.56386 l -1.3525,-1.3525 z m 6.08427,-6.08428 1.3525,1.35251 h 4.56386 v -2.70501 h -4.56386 z m -1.38688,3.34622 10e-4,1.91307 3.22722,3.22723 1.91307,-1.91307 -3.22723,-3.22723 z" />
295
+ </g>
296
+ </g>
297
+ </svg>
@@ -818,7 +818,7 @@
818
818
  id="tspan304"
819
819
  style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.63515px;font-family:'SauceCodePro Nerd Font Mono';-inkscape-font-specification:'SauceCodePro Nerd Font Mono';text-align:center;text-anchor:middle;fill:#a14f8c;fill-opacity:1;stroke-width:0.248818"
820
820
  x="1326.7157"
821
- y="702.75189">{% include base/partials/script.html.liquid %}</tspan></text></g><g
821
+ y="702.75189">{% include base/script.html.liquid %}</tspan></text></g><g
822
822
  id="g85"
823
823
  transform="translate(0,1.9083157)"><rect
824
824
  style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:1.5875, 3.175;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
@@ -842,7 +842,7 @@
842
842
  id="tspan304-8"
843
843
  style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.63515px;font-family:'SauceCodePro Nerd Font Mono';-inkscape-font-specification:'SauceCodePro Nerd Font Mono Bold';text-align:center;text-anchor:middle;fill:#a14f8c;fill-opacity:1;stroke-width:0.248818"
844
844
  x="963.64081"
845
- y="634.71619">{% include base/partials/footer.html.liquid %}</tspan></text></g><g
845
+ y="634.71619">{% include base/footer.html.liquid %}</tspan></text></g><g
846
846
  id="g71"><rect
847
847
  style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:1.5875, 3.175;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
848
848
  id="rect20"
@@ -864,7 +864,7 @@
864
864
  id="tspan305"
865
865
  style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.63515px;font-family:'SauceCodePro Nerd Font Mono';-inkscape-font-specification:'SauceCodePro Nerd Font Mono Bold';text-align:center;text-anchor:middle;fill:#a14f8c;fill-opacity:1;stroke-width:0.248818"
866
866
  x="963.64398"
867
- y="-156.24957">{% include base/partials/head.html.liquid %}</tspan></text></g><g
867
+ y="-156.24957">{% include base/head.html.liquid %}</tspan></text></g><g
868
868
  id="g72"
869
869
  transform="translate(0,-0.84706395)"><rect
870
870
  style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:1.5875, 3.175;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
@@ -887,7 +887,7 @@
887
887
  id="tspan21"
888
888
  style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.63515px;font-family:'SauceCodePro Nerd Font Mono';-inkscape-font-specification:'SauceCodePro Nerd Font Mono Bold';text-align:center;text-anchor:middle;fill:#a14f8c;fill-opacity:1;stroke-width:0.248818"
889
889
  x="963.64398"
890
- y="-129.39656">{% include base/partials/navbar.html.liquid %}</tspan></text></g><g
890
+ y="-129.39656">{% include base/navbar.html.liquid %}</tspan></text></g><g
891
891
  id="g73"
892
892
  transform="translate(0,4.6623851)"><rect
893
893
  style="fill:#ffffff;fill-opacity:1;stroke:#a14f8c;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:1.5875, 3.175;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
Binary file