jekyll-theme-centos 2.51.1.beta.55 → 2.51.1.beta.56

Sign up to get free protection for your applications and to get access to all the features.
Binary file
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.51.1.beta.55
4
+ version: 2.51.1.beta.56
5
5
  platform: ruby
6
6
  authors:
7
7
  - ReleaseBot
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-07-21 00:00:00.000000000 Z
11
+ date: 2024-09-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -46,15 +46,17 @@ dependencies:
46
46
  version: 2.4.0
47
47
  description:
48
48
  email:
49
- - group_58921183_bot_b2824b5ca0eb4d2e45040e1a9a3477ce@noreply.gitlab.com
49
+ - group_58921183_bot_af806e3187b7ed5681cbb0888859175f@noreply.gitlab.com
50
50
  executables: []
51
51
  extensions: []
52
52
  extra_rdoc_files: []
53
53
  files:
54
54
  - _config.yml
55
+ - _data/base/bits.yml
55
56
  - _data/base/copyright.yml
56
57
  - _data/base/languages.yml
57
58
  - _data/base/navbar.yml
59
+ - _data/base/project.yml
58
60
  - _data/base/references.yml
59
61
  - _data/base/social.yml
60
62
  - _data/download/cards.yml
@@ -63,9 +65,10 @@ files:
63
65
  - _data/sponsors/carousel.yml
64
66
  - _data/sponsors/navbar.yml
65
67
  - _includes/base/announcements.html
66
- - _includes/base/banner.html
68
+ - _includes/base/bits.html
67
69
  - _includes/base/breadcrumbs.html
68
70
  - _includes/base/breakingnews.html
71
+ - _includes/base/card.html
69
72
  - _includes/base/copyright.html
70
73
  - _includes/base/finale.html
71
74
  - _includes/base/head.html
@@ -73,6 +76,7 @@ files:
73
76
  - _includes/base/languages.html
74
77
  - _includes/base/link.html
75
78
  - _includes/base/navbar.html
79
+ - _includes/base/project.html
76
80
  - _includes/base/script.html
77
81
  - _includes/base/shortcuts.html
78
82
  - _includes/base/social.html
@@ -216,9 +220,10 @@ files:
216
220
  - assets/icons/favicon.svg
217
221
  - assets/img/anaconda-symbolic.svg
218
222
  - assets/img/anaconda.svg
223
+ - assets/img/base/page-with-bits.webp
219
224
  - assets/img/base/page.svg
220
225
  - assets/img/base/page.webp
221
- - assets/img/base/page_with_banner.webp
226
+ - assets/img/base/screenshot-example-1600x1200.webp
222
227
  - assets/img/base/site-navigation-bar.svg
223
228
  - assets/img/base/site-navigation-bar.webp
224
229
  - assets/img/base/site-navigation-flow.svg
@@ -298,7 +303,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
298
303
  - !ruby/object:Gem::Version
299
304
  version: '0'
300
305
  requirements: []
301
- rubygems_version: 3.5.9
306
+ rubygems_version: 3.5.11
302
307
  signing_key:
303
308
  specification_version: 4
304
309
  summary: Jekyll theme for CentOS websites
@@ -1,86 +0,0 @@
1
- {%- capture html_banner %}
2
- {%- comment %}
3
- Usage:
4
- {% include base/banner.html %}
5
-
6
- Optional Parameters:
7
- * name (string) : ""
8
- * image (string) : ""
9
- * image_height (string) : "92"
10
- * icon (string) : ""
11
- * description (string) : ""
12
- * actions (list) : [{"name":"","url":""}]
13
- * resources (list) : [{"name":"","url":"","icon":""}]
14
-
15
- Output:
16
- Page banner.
17
- {%- endcomment %}
18
-
19
- {%- assign image = page.with_banner.image | default: include.image %}
20
- {%- assign image_height = page.with_banner.image_height | default: include.image_height | default: '92' %}
21
- {%- assign icon = page.with_banner.icon | default: include.icon %}
22
- {%- assign name = page.with_banner.name | default: include.name %}
23
- {%- assign description = page.with_banner.description | default: include.description %}
24
- {%- assign actions = page.with_banner.actions | default: include.actions %}
25
- {%- assign resources = page.with_banner.resources | default: include.resources %}
26
-
27
- {%- capture html_banner_image -%}
28
- {%- if name == nil and description == nil and actions == nil and resources == nil %}
29
- {%- assign mb = "1" %}
30
- {%- else %}
31
- {%- assign mb = "5" %}
32
- {%- endif %}
33
- <div class="mt-1 mb-{{ mb }}"><img src="{{ site.url }}{{ site.baseurl }}/assets/img/{{ image }}" height="{{ image_height }}" alt="{{ name }}"></div>
34
- {%- endcapture %}
35
-
36
- {%- capture html_banner_icon -%}
37
- {%- if name == nil and description == nil and actions == nil and resources == nil %}
38
- {%- assign mb = "1" %}
39
- {%- else %}
40
- {%- assign mb = "5" %}
41
- {%- endif %}
42
- <div class="display-4 mb-{{ mb }}"><i class="{{ icon }}"></i></div>
43
- {%- endcapture %}
44
-
45
- {%- capture html_banner_name -%}
46
- <div class="display-4 fw-bold mb-1">{{ name }}</div>
47
- {%- endcapture %}
48
-
49
- {%- capture html_banner_description -%}
50
- {%- if actions == nil and resources == nil %}
51
- {%- assign mb = "1" %}
52
- {%- else %}
53
- {%- assign mb = "3" %}
54
- {%- endif %}
55
- <div class="lead mb-{{ mb }}">{{ description }}</div>
56
- {%- endcapture %}
57
-
58
- {%- capture html_banner_actions -%}
59
- <div class="d-flex align-items-start">
60
- {%- for action in actions %}
61
- <div class="me-1 mb-1">{% include base/link.html class="btn btn-primary text-nowrap" role="button" name=action.name url=action.url %}</div>
62
- {% endfor %}
63
- </div>
64
- {%- endcapture %}
65
-
66
- {%- capture html_banner_resources -%}
67
- <div class="d-flex bg-primary text-bg-primary text-center rounded-bottom">
68
- {%- for resource in resources %}
69
- <div class="col d-grid">
70
- {% include base/link.html class="btn btn-primary text-nowrap" role="button" name=resource.name url=resource.url icon=resource.icon %}
71
- </div>
72
- {%- endfor %}
73
- </div>
74
- {%- endcapture -%}
75
- <div class="d-flex justify-content-center bg-dark bg-image text-bg-dark px-3 rounded-top{% if resources == nil %} rounded-bottom{% endif %}">
76
- <div class="col-sm-12 col-lg-8 py-5">
77
- {%- if image %}{{ html_banner_image }}{% endif %}
78
- {%- if icon %}{{ html_banner_icon }}{% endif %}
79
- {%- if name %}{{ html_banner_name }}{% endif %}
80
- {%- if description %}{{ html_banner_description }}{% endif %}
81
- {%- if actions.size > 0 %}{{ html_banner_actions }}{% endif %}
82
- </div>
83
- </div>
84
- {%- if resources.size > 0 %}{{ html_banner_resources }}{% endif %}
85
- {%- endcapture -%}
86
- {{- html_banner -}}
Binary file