jekyll-theme-centos 2.52.0.beta.81 → 2.52.0.beta.82
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.
- checksums.yaml +4 -4
- data/_data/base/artwork_schema.yml +16 -14
- data/_data/base/project_schema.yml +1 -1
- data/_includes/base/artwork.html.liquid +9 -17
- data/_includes/base/project.html.liquid +1 -1
- data/_sass/base/_customization.scss +37 -2
- data/assets/icons/android-chrome-192.png +0 -0
- data/assets/icons/android-chrome-512.png +0 -0
- data/assets/icons/apple-touch-icon.png +0 -0
- data/assets/icons/favicon-16.png +0 -0
- data/assets/icons/favicon-32.png +0 -0
- data/assets/img/anaconda-symbolic.svg +0 -0
- data/assets/img/anaconda.svg +0 -0
- data/assets/img/bg-artwork-lg.png +0 -0
- data/assets/img/bg-artwork-md.png +0 -0
- data/assets/img/bg-artwork-sm.png +0 -0
- data/assets/img/bg-artwork-xl.png +0 -0
- data/assets/img/bg-artwork-xxl.png +0 -0
- data/assets/img/bg-project-lg.png +0 -0
- data/assets/img/bg-project-md.png +0 -0
- data/assets/img/bg-project-sm.png +0 -0
- data/assets/img/bg-project-xl.png +0 -0
- data/assets/img/bg-project-xxl.png +0 -0
- data/assets/img/centos-dynamicmsg-logo.svg +0 -0
- data/assets/img/centos-dynamicmsg-type.svg +0 -0
- data/assets/img/centos-dynamicmsg-whitelogo.svg +0 -0
- data/assets/img/centos-dynamicmsg-whitetype.svg +0 -0
- data/assets/img/centos-gdm-whitelogo.svg +0 -0
- data/assets/img/centos-ipa-whiteheader.svg +0 -0
- data/assets/img/centos-logo-2bits.svg +0 -0
- data/assets/img/centos-logo.svg +0 -0
- data/assets/img/centos-message-logo.svg +0 -0
- data/assets/img/centos-poweredby-logo.svg +1 -1
- data/assets/img/centos-social-share.png +0 -0
- data/assets/img/centos-symbol-2bits.svg +0 -0
- data/assets/img/centos-symbol.svg +0 -0
- data/assets/img/centos-type.svg +0 -0
- data/assets/img/centos-vertical-logo.svg +0 -0
- data/assets/img/centos-vertical-message-logo.svg +0 -0
- data/assets/img/centos-whitelogo.svg +0 -0
- metadata +11 -2
- data/assets/img/centos-motif.png +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6481982e50ed504ef3374fffefd3d911b57c5b4c8c9c57021cb64ba14d743b15
|
|
4
|
+
data.tar.gz: 9c7288672e76df5d9046d94013c23c325381cef9d25b6712bb0721b9145d05e8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 59cb5a4f0f4fcc4747b1f7b0ed2212dc02632ca7c24c9057a520a2920559964b6a35c70ee610dac79b24e30dc9635364228c5208ce0832a759368822867f7cd2
|
|
7
|
+
data.tar.gz: ab703700239c155c127270746ac26f504a650a140381f48d6d3f2846cc53467ff525ad232b5c0e5e42867fde080b344947750d8b57c77fad21c2b4f7ec0b8820
|
|
@@ -15,7 +15,10 @@ properties:
|
|
|
15
15
|
type: object
|
|
16
16
|
description: >-
|
|
17
17
|
The configuration dictionary for the Artwork component. This object contains
|
|
18
|
-
all necessary settings, such as
|
|
18
|
+
all necessary settings, such as container classes and alt text. The
|
|
19
|
+
artwork image itself is not configurable here — it is rendered via the
|
|
20
|
+
`.bg-artwork` CSS class (see src/SASS/_customization.scss), which sets a
|
|
21
|
+
fixed, responsive background image per breakpoint.
|
|
19
22
|
properties:
|
|
20
23
|
class:
|
|
21
24
|
type: string
|
|
@@ -23,24 +26,23 @@ properties:
|
|
|
23
26
|
description: >-
|
|
24
27
|
Custom CSS class(es) to apply to the Artwork component's container element.
|
|
25
28
|
The default value `col` suggests a standard column layout.
|
|
26
|
-
image:
|
|
27
|
-
type: string
|
|
28
|
-
default: /assets/img/centos-motif.png
|
|
29
|
-
description: >-
|
|
30
|
-
The URL path to the image file. This supports both relative paths (e.g., `/assets/img/your-image.jpg`) and absolute URLs.
|
|
31
29
|
image_class:
|
|
32
30
|
type: string
|
|
33
|
-
default:
|
|
31
|
+
default: ratio ratio-16x9 rounded bg-dark bg-artwork
|
|
34
32
|
description: >-
|
|
35
|
-
Custom CSS class(es) to apply directly to the
|
|
36
|
-
|
|
37
|
-
|
|
33
|
+
Custom CSS class(es) to apply directly to the artwork element. The
|
|
34
|
+
`bg-artwork` class is required — it supplies the responsive
|
|
35
|
+
background image; removing it renders an empty box. The `ratio`
|
|
36
|
+
class together with a Bootstrap ratio modifier controls the
|
|
37
|
+
artwork's presentation ratio — swap the modifier (`ratio-1x1`,
|
|
38
|
+
`ratio-4x3`, `ratio-16x9`, `ratio-21x9`) to change the ratio,
|
|
39
|
+
keeping both the `ratio` and `bg-artwork` classes present. The
|
|
40
|
+
remaining default classes apply common styling like rounded
|
|
41
|
+
corners and a dark background.
|
|
38
42
|
alt:
|
|
39
43
|
type: string
|
|
40
44
|
default: centos-motif.png
|
|
41
45
|
description: >-
|
|
42
|
-
The
|
|
43
|
-
|
|
44
|
-
required:
|
|
45
|
-
- image # Added a required field constraint for best practice
|
|
46
|
+
The text used as the `aria-label` on the artwork element, crucial
|
|
47
|
+
for accessibility and SEO.
|
|
46
48
|
additionalProperties: false
|
|
@@ -19,7 +19,7 @@ properties:
|
|
|
19
19
|
properties:
|
|
20
20
|
class:
|
|
21
21
|
type: string
|
|
22
|
-
default: flex-column text-bg-dark bg-
|
|
22
|
+
default: flex-column text-bg-dark bg-project
|
|
23
23
|
description: >-
|
|
24
24
|
Custom Bootstrap classes for the main project container, controlling
|
|
25
25
|
alignment, background, and text colors (e.g., `padding`, `bg-image`).
|
|
@@ -1,24 +1,21 @@
|
|
|
1
1
|
{% comment %}
|
|
2
2
|
================================================================================
|
|
3
3
|
Template: Artwork Component
|
|
4
|
-
Purpose: Renders responsive
|
|
5
|
-
|
|
4
|
+
Purpose: Renders the responsive centos-motif background (.bg-artwork, see
|
|
5
|
+
src/SASS/_customization.scss) at breakpoint-appropriate sizes.
|
|
6
6
|
================================================================================
|
|
7
7
|
|
|
8
8
|
Design Logic:
|
|
9
|
-
-
|
|
10
|
-
|
|
11
|
-
- Internal paths prefixed with site.baseurl
|
|
9
|
+
- Background image comes entirely from the .bg-artwork CSS class (breakpoint
|
|
10
|
+
URLs are hardcoded in SCSS) — this component does not accept a custom image
|
|
12
11
|
- Schema-based defaults for consistent styling
|
|
13
|
-
-
|
|
14
|
-
|
|
15
|
-
Required Inputs:
|
|
16
|
-
- image: Image filename or full URL
|
|
12
|
+
- role="img" + aria-label for accessibility, since there is no <img> element
|
|
17
13
|
|
|
18
14
|
Optional Inputs:
|
|
19
|
-
- alt:
|
|
15
|
+
- alt: Text used as the element's aria-label
|
|
20
16
|
- class: Container div CSS classes
|
|
21
|
-
- image_class:
|
|
17
|
+
- image_class: CSS classes for the .bg-artwork element itself, including the Bootstrap
|
|
18
|
+
`ratio` + `ratio-*` modifier classes that control presentation ratio
|
|
22
19
|
- data: Artwork data object (overrides fallbacks)
|
|
23
20
|
- column_class: Bootstrap column class for the row wrapper (set by the layout to
|
|
24
21
|
keep this component aligned with the content column; defaults to "col")
|
|
@@ -48,7 +45,6 @@ Data Source Hierarchy (priority):
|
|
|
48
45
|
{%- comment %} === Presentation === {% endcomment %}
|
|
49
46
|
|
|
50
47
|
{%- comment %} --- Defaults --- {% endcomment %}
|
|
51
|
-
{%- assign artwork_image = with_artwork_data.image | default: with_artwork_schema.image.default %}
|
|
52
48
|
{%- assign artwork_alt = with_artwork_data.alt | default: with_artwork_schema.alt.default %}
|
|
53
49
|
{%- assign artwork_class = with_artwork_data.class | default: with_artwork_schema.class.default %}
|
|
54
50
|
{%- assign artwork_image_class = with_artwork_data.image_class | default: with_artwork_schema.image_class.default %}
|
|
@@ -58,11 +54,7 @@ Data Source Hierarchy (priority):
|
|
|
58
54
|
<div class="row mb-3">
|
|
59
55
|
<div class="{{ column_class }}">
|
|
60
56
|
<div class="{{ artwork_class }}">
|
|
61
|
-
{
|
|
62
|
-
<img src="{{ artwork_image }}" class="{{ artwork_image_class }}" alt="{{ artwork_alt }}" />
|
|
63
|
-
{%- else %}
|
|
64
|
-
<img src="{{ site.baseurl }}{{ artwork_image }}" class="{{ artwork_image_class }}" alt="{{ artwork_alt }}" />
|
|
65
|
-
{%- endif %}
|
|
57
|
+
<div class="{{ artwork_image_class }}" role="img" aria-label="{{ artwork_alt }}"></div>
|
|
66
58
|
</div>
|
|
67
59
|
</div>
|
|
68
60
|
</div>
|
|
@@ -68,7 +68,7 @@ Data Source Hierarchy (priority):
|
|
|
68
68
|
{% assign project_resources_btn_class = with_project_data.resources_btn_class | default: with_project_schema.resources_btn_class.default %}
|
|
69
69
|
|
|
70
70
|
<div class="d-flex{% if project_class != "" %} {{ project_class }}{% endif %}">
|
|
71
|
-
<div class="container{% if with_navbar %} pt-
|
|
71
|
+
<div class="container{% if with_navbar %} pt-2{% endif %}">
|
|
72
72
|
{% include base/card.html.liquid
|
|
73
73
|
class = project_content_class
|
|
74
74
|
color = "primary"
|
|
@@ -61,11 +61,46 @@ body {
|
|
|
61
61
|
}
|
|
62
62
|
}
|
|
63
63
|
|
|
64
|
-
.bg-
|
|
65
|
-
background-
|
|
64
|
+
.bg-project {
|
|
65
|
+
background-repeat: no-repeat;
|
|
66
|
+
background-position: center;
|
|
66
67
|
background-size: cover;
|
|
68
|
+
background-image: url("../../img/bg-project-sm.png");
|
|
69
|
+
|
|
70
|
+
@include media-breakpoint-up(md) {
|
|
71
|
+
background-image: url("../../img/bg-project-md.png");
|
|
72
|
+
}
|
|
73
|
+
@include media-breakpoint-up(lg) {
|
|
74
|
+
background-image: url("../../img/bg-project-lg.png");
|
|
75
|
+
}
|
|
76
|
+
@include media-breakpoint-up(xl) {
|
|
77
|
+
background-image: url("../../img/bg-project-xl.png");
|
|
78
|
+
}
|
|
79
|
+
@include media-breakpoint-up(xxl) {
|
|
80
|
+
background-image: url("../../img/bg-project-xxl.png");
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.bg-artwork {
|
|
67
85
|
background-repeat: no-repeat;
|
|
86
|
+
background-position: center;
|
|
87
|
+
background-size: contain;
|
|
88
|
+
background-image: url("../../img/bg-artwork-sm.png");
|
|
89
|
+
|
|
90
|
+
@include media-breakpoint-up(md) {
|
|
91
|
+
background-image: url("../../img/bg-artwork-md.png");
|
|
92
|
+
}
|
|
93
|
+
@include media-breakpoint-up(lg) {
|
|
94
|
+
background-image: url("../../img/bg-artwork-lg.png");
|
|
95
|
+
}
|
|
96
|
+
@include media-breakpoint-up(xl) {
|
|
97
|
+
background-image: url("../../img/bg-artwork-xl.png");
|
|
98
|
+
}
|
|
99
|
+
@include media-breakpoint-up(xxl) {
|
|
100
|
+
background-image: url("../../img/bg-artwork-xxl.png");
|
|
101
|
+
}
|
|
68
102
|
}
|
|
103
|
+
|
|
69
104
|
.bg-image-center {
|
|
70
105
|
background-position: center;
|
|
71
106
|
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
data/assets/icons/favicon-16.png
CHANGED
|
Binary file
|
data/assets/icons/favicon-32.png
CHANGED
|
Binary file
|
|
File without changes
|
data/assets/img/anaconda.svg
CHANGED
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/assets/img/centos-logo.svg
CHANGED
|
File without changes
|
|
File without changes
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="205.653" height="100" viewBox="0 0 54.412 26.458"><rect width="54.412" height="26.458" rx="1.323" ry="1.323" style="opacity:1;fill:#a14f8c;stroke:none;stroke-width:.531045;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;paint-order:normal"/><rect width="52.773" height="20.032" x=".72" y="5.428" rx="1.323" ry="1.323" style="opacity:1;fill:#f6edf4;stroke:none;stroke-width:.531045;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;paint-order:normal"/><path d="M5.22 3.853V1.505h1.016q.312 0 .54.104.231.1.355.292t.124.456q0 .262-.124.453-.124.19-.355.295-.228.1-.54.1h-.473v.648zm.543-1.09h.443q.248 0 .372-.108.127-.107.127-.298 0-.195-.127-.302-.124-.107-.372-.107h-.443Zm2.696 1.116q-.288 0-.513-.117-.221-.12-.352-.329-.128-.21-.128-.482t.128-.48q.13-.211.352-.329.225-.12.513-.12.285 0 .51.12.224.118.352.329.127.208.127.48 0 .271-.127.482-.128.208-.352.329-.225.117-.51.117m0-.429q.194 0 .325-.134.134-.134.134-.365 0-.235-.134-.366-.13-.134-.325-.134-.198 0-.332.134-.13.13-.13.366 0 .23.13.365.134.134.332.134m1.7.403-.65-1.805h.493l.425 1.221.443-1.22h.443l.429 1.223.44-1.224h.462l-.654 1.805h-.503l-.406-1.124-.419 1.124zm3.575.026q-.312 0-.543-.12-.232-.121-.36-.329-.127-.211-.127-.48 0-.271.124-.479.128-.211.346-.329.218-.12.493-.12.265 0 .476.114.215.114.339.325.124.208.124.496 0 .03-.004.07l-.006.071H13.23q.04.168.174.265.138.097.342.097.144 0 .252-.043.11-.044.2-.131l.28.302q-.256.291-.745.291m-.507-1.086h.886q-.027-.171-.148-.272-.117-.104-.295-.104t-.298.104q-.118.1-.145.272m1.727 1.06V2.048h.5v.239q.191-.265.62-.265v.483q-.067-.007-.117-.007-.218 0-.349.124-.13.12-.13.379v.852zm2.31.026q-.311 0-.542-.12-.232-.121-.36-.329-.127-.211-.127-.48 0-.271.124-.479.128-.211.346-.329.218-.12.493-.12.265 0 .476.114.215.114.339.325.124.208.124.496 0 .03-.004.07l-.006.071h-1.365q.04.168.174.265.138.097.342.097.144 0 .252-.043.11-.044.201-.131l.278.302q-.255.291-.744.291m-.505-1.086h.885q-.027-.171-.148-.272-.117-.104-.295-.104t-.298.104q-.118.1-.144.272m2.501 1.086q-.255 0-.46-.114-.204-.114-.325-.322-.117-.21-.117-.492 0-.286.117-.493.121-.208.326-.322.204-.114.46-.114.163 0 .3.053.138.054.239.165v-.876h.523v2.489h-.5v-.208q-.19.234-.563.234m.09-.429q.195 0 .326-.134.134-.134.134-.365 0-.235-.134-.366-.13-.134-.325-.134-.198 0-.332.134-.131.13-.131.366 0 .23.13.365.135.134.333.134m3.471.43q-.372 0-.566-.235v.208h-.5V1.364h.523v.876q.1-.111.238-.165.138-.053.305-.053.252 0 .456.114t.322.322q.121.207.121.493 0 .281-.12.492-.118.208-.323.322-.204.114-.456.114m-.09-.43q.194 0 .325-.134.134-.134.134-.365 0-.235-.134-.366-.13-.134-.325-.134-.198 0-.329.134-.13.13-.13.366 0 .23.13.365.131.134.329.134m1.516 1.08q-.141 0-.279-.044-.137-.043-.224-.12l.19-.373q.132.114.296.114.11 0 .174-.053.067-.05.12-.171l.008-.017-.782-1.818h.54l.507 1.228.51-1.228h.502l-.815 1.915q-.13.329-.318.446-.185.121-.43.121" aria-label="Powered by" style="font-weight:700;font-size:3.35336px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:"Montserrat Bold";fill:#f6edf4;stroke-width:.314378"/><g aria-label="CentOS" style="font-weight:700;font-size:29.9666px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:"Montserrat Bold";fill:#a14f8c;fill-opacity:1;stroke-width:.749167"><path d="M865.94 362.406c3.657 0 6.683-1.319 8.66-3.746l-3.116-2.877c-1.408 1.649-3.176 2.488-5.274 2.488-3.925 0-6.712-2.757-6.712-6.713s2.787-6.712 6.712-6.712c2.098 0 3.866.839 5.274 2.457l3.117-2.877c-1.978-2.397-5.004-3.716-8.63-3.716-6.533 0-11.388 4.525-11.388 10.848s4.855 10.848 11.358 10.848M892.76 354.045c0-5.184-3.655-8.36-8.39-8.36-4.915 0-8.6 3.476-8.6 8.3 0 4.795 3.626 8.301 9.2 8.301 2.906 0 5.154-.899 6.652-2.607l-2.487-2.697c-1.11 1.049-2.338 1.558-4.046 1.558-2.457 0-4.165-1.228-4.615-3.236h12.197c.03-.39.09-.9.09-1.259m-8.36-4.824c2.098 0 3.626 1.318 3.956 3.356h-7.942c.33-2.068 1.858-3.356 3.986-3.356M905.676 345.685c-2.187 0-4.075.749-5.334 2.127v-1.888h-4.465v16.122h4.675v-7.97c0-2.967 1.618-4.346 3.866-4.346 2.067 0 3.266 1.199 3.266 3.806v8.51h4.675v-9.23c0-4.914-2.877-7.131-6.683-7.131M925.724 357.971c-.51.39-1.199.6-1.888.6-1.259 0-2.008-.75-2.008-2.128v-6.563h4.016v-3.596h-4.016v-3.926h-4.675v3.926h-2.487v3.596h2.487v6.623c0 3.835 2.218 5.783 6.024 5.783 1.438 0 2.847-.33 3.805-1.019zM940.108 362.406c6.592 0 11.477-4.585 11.477-10.848s-4.885-10.848-11.477-10.848c-6.623 0-11.477 4.615-11.477 10.848s4.854 10.848 11.477 10.848m0-4.135c-3.746 0-6.563-2.727-6.563-6.713 0-3.985 2.817-6.712 6.563-6.712s6.563 2.727 6.563 6.712c0 3.986-2.817 6.713-6.563 6.713M962.133 362.406c5.994 0 8.9-2.997 8.9-6.503 0-7.701-12.196-5.034-12.196-8.9 0-1.318 1.109-2.397 3.986-2.397 1.857 0 3.865.54 5.813 1.648l1.498-3.686c-1.947-1.228-4.644-1.858-7.282-1.858-5.963 0-8.84 2.967-8.84 6.533 0 7.791 12.197 5.094 12.197 9.02 0 1.288-1.169 2.247-4.046 2.247-2.517 0-5.154-.899-6.922-2.187l-1.648 3.656c1.858 1.438 5.214 2.427 8.54 2.427" style="fill:#a14f8c" transform="translate(-208.157 -77.569)scale(.26481)"/></g><g transform="matrix(.2858 0 0 .28579 -99.958 81.98)"><circle cx="435.079" cy="-124.144" r="20.103" style="fill:#a14f8c;fill-opacity: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:#000" transform="rotate(-15)"/><path d="m384.257-249.617-3.875 3.875h-5.479v5.48l-3.875 3.875 3.875 3.874v5.48h5.48l3.874 3.875 3.875-3.875h5.48v-5.48l3.874-3.874-3.875-3.875-5.48-5.48zm1.176 3.875v4.18l-1.176 1.176-1.176-1.176v-4.18zm-6.959 1.908 2.956 2.957v1.662h-1.663l-2.956-2.956zm-3.571 6.27h4.18l1.176 1.177-1.176 1.176h-4.18zm14.434 0h4.18v2.353h-4.18l-1.176-1.176zm-9.503 3.937h1.663v1.663l-2.956 2.956-1.663-1.663zm7.184 0h1.663l2.956 2.956-1.663 1.663-2.956-2.956zm-2.76 1.143 1.175 1.176v4.18h-2.352v-4.18z" style="fill:#fff;fill-opacity:1;stroke-width:7.93746;stroke-linecap:round;paint-order:fill markers stroke;stop-color:#000" transform="translate(-53.772 39.325)scale(1.15)"/><path d="m385.433-239.09-1.176 1.04-1.176-1.04v1.526h-1.526l1.039 1.177-1.04 1.176h1.527v1.526l1.176-1.04 1.176 1.04v-1.526h1.527l-1.04-1.176 1.04-1.177h-1.527z" style="fill:#efa724;fill-opacity:1;stroke-width:8.59212;stroke-linecap:round;paint-order:fill markers stroke;stop-color:#000" transform="translate(-53.772 39.325)scale(1.15)"/><path d="m388.135-245.738 1.905 1.905-2.956 2.956v1.663h1.663l2.956-2.956 1.911 1.911-.003-5.483z" style="fill:#efa724;fill-opacity:1;stroke-width:6.14231;stroke-linecap:round;paint-order:fill markers stroke;stop-color:#000" transform="translate(-53.772 39.325)scale(1.15)"/></g></svg>
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
data/assets/img/centos-type.svg
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-theme-centos
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.52.0.beta.
|
|
4
|
+
version: 2.52.0.beta.82
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alain Reguera Delgado
|
|
@@ -530,6 +530,16 @@ files:
|
|
|
530
530
|
- assets/img/base/page-with-title.svg
|
|
531
531
|
- assets/img/base/page-with-toc.svg
|
|
532
532
|
- assets/img/base/screenshot-1200x600.svg
|
|
533
|
+
- assets/img/bg-artwork-lg.png
|
|
534
|
+
- assets/img/bg-artwork-md.png
|
|
535
|
+
- assets/img/bg-artwork-sm.png
|
|
536
|
+
- assets/img/bg-artwork-xl.png
|
|
537
|
+
- assets/img/bg-artwork-xxl.png
|
|
538
|
+
- assets/img/bg-project-lg.png
|
|
539
|
+
- assets/img/bg-project-md.png
|
|
540
|
+
- assets/img/bg-project-sm.png
|
|
541
|
+
- assets/img/bg-project-xl.png
|
|
542
|
+
- assets/img/bg-project-xxl.png
|
|
533
543
|
- assets/img/centos-dynamicmsg-logo.svg
|
|
534
544
|
- assets/img/centos-dynamicmsg-type.svg
|
|
535
545
|
- assets/img/centos-dynamicmsg-whitelogo.svg
|
|
@@ -539,7 +549,6 @@ files:
|
|
|
539
549
|
- assets/img/centos-logo-2bits.svg
|
|
540
550
|
- assets/img/centos-logo.svg
|
|
541
551
|
- assets/img/centos-message-logo.svg
|
|
542
|
-
- assets/img/centos-motif.png
|
|
543
552
|
- assets/img/centos-poweredby-logo.svg
|
|
544
553
|
- assets/img/centos-social-share.png
|
|
545
554
|
- assets/img/centos-symbol-2bits.svg
|
data/assets/img/centos-motif.png
DELETED
|
Binary file
|