jekyll-theme-centos 2.2.3 → 2.2.4
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/_config.yml +13 -20
- 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/site.webmanifest +11 -0
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d762fe2a2b177c5a2c620071a6348c2e24e245d9c9290c6c798235e789dc6812
|
|
4
|
+
data.tar.gz: 3b047cac21b9dd2ad97fb50a516b89cbb576ef3d98c7ee73923730cbb9d72464
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d6b31263f90ec823a0ebd058eaf625aed785b0f1bd94e98309c8c2c77fa5dcb88ec1cc0f8c7e21472eb8ee8ab4d0d6795b8f7f572bbbe8936f0e6931ba38d7a8
|
|
7
|
+
data.tar.gz: 74a8f1374aea06350b46b2b1f56adea86e6d13d8d7c0c9e242cabf167f8238a479c574fddd30c7662c74b950c3c4f059019deabfc9a27edbb589ebe5e6394934
|
data/_config.yml
CHANGED
|
@@ -14,14 +14,6 @@
|
|
|
14
14
|
# https://learn-the-web.algonquindesign.ca/topics/markdown-yaml-cheat-sheet/#yaml
|
|
15
15
|
# https://learnxinyminutes.com/docs/yaml/
|
|
16
16
|
|
|
17
|
-
# These are used to personalize your new site. If you look in the HTML files,
|
|
18
|
-
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
|
|
19
|
-
# You can create any custom variable you would like, and they will be
|
|
20
|
-
# accessible in the templates via {{ site.myvariable }}.
|
|
21
|
-
title: jekyll-theme-centos
|
|
22
|
-
email: areguera@centosproject.org
|
|
23
|
-
description: "Jekyll theme for CentOS project websites."
|
|
24
|
-
|
|
25
17
|
# site.manifestation - Set the name of the visual manifestation you are
|
|
26
18
|
# providing a site for. The theme presents this name on the right side of the
|
|
27
19
|
# CentOS logo. If this value is not empty, the navbar data must be related to
|
|
@@ -35,14 +27,11 @@ navbar_data_dirname: "base"
|
|
|
35
27
|
|
|
36
28
|
# site.navbar_data_filename - Set the name of the navbar data file. For
|
|
37
29
|
# example, if the navbar file is at `_data/base/navbar.yml', the value you need
|
|
38
|
-
# to provide is `navbar', without the extension.
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
#
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
# The subpath of your site, e.g. /blog
|
|
45
|
-
baseurl: "/artwork/centos-web/jekyll-theme-centos"
|
|
30
|
+
# to provide is `navbar', without the extension. The CentOS navbar is stored in
|
|
31
|
+
# jekyll-theme-centos-base component, specifcally in the file
|
|
32
|
+
# `src/YAML/navbar_www.yml'. The CentOS navbar is the one shipped in
|
|
33
|
+
# jekyll-theme-centos by default.
|
|
34
|
+
navbar_data_filename: "navbar_www"
|
|
46
35
|
|
|
47
36
|
defaults:
|
|
48
37
|
- scope:
|
|
@@ -68,14 +57,18 @@ collections:
|
|
|
68
57
|
permalink: /:categories/:title/
|
|
69
58
|
|
|
70
59
|
exclude:
|
|
71
|
-
- .
|
|
72
|
-
- .
|
|
60
|
+
- .bundle
|
|
61
|
+
- .git
|
|
73
62
|
- .sass-cache/
|
|
74
63
|
- .jekyll-cache/
|
|
75
|
-
-
|
|
64
|
+
- gemfiles/
|
|
76
65
|
- Gemfile
|
|
77
66
|
- Gemfile.lock
|
|
78
|
-
-
|
|
67
|
+
- node_modules/
|
|
68
|
+
- vendor/bundle/
|
|
69
|
+
- vendor/cache/
|
|
70
|
+
- vendor/gems/
|
|
71
|
+
- vendor/ruby/
|
|
79
72
|
|
|
80
73
|
sass:
|
|
81
74
|
style: compressed
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
data/assets/icons/favicon-16.png
CHANGED
|
Binary file
|
data/assets/icons/favicon-32.png
CHANGED
|
Binary file
|
data/site.webmanifest
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "",
|
|
3
|
+
"short_name": "",
|
|
4
|
+
"icons": [
|
|
5
|
+
{ "src": "/android-chrome-192.png", "sizes": "192x192", "type": "image/png" },
|
|
6
|
+
{ "src": "/android-chrome-512.png", "sizes": "512x512", "type": "image/png" }
|
|
7
|
+
],
|
|
8
|
+
"theme_color": "#ffffff",
|
|
9
|
+
"background_color": "#ffffff",
|
|
10
|
+
"display": "standalone"
|
|
11
|
+
}
|
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.2.
|
|
4
|
+
version: 2.2.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Release
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-06-
|
|
11
|
+
date: 2023-06-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -251,6 +251,7 @@ files:
|
|
|
251
251
|
- assets/js/jquery.min.js
|
|
252
252
|
- assets/js/jquery.slim.min.js
|
|
253
253
|
- assets/js/vanilla-back-to-top.min.js
|
|
254
|
+
- site.webmanifest
|
|
254
255
|
homepage: https://gitlab.com/CentOS/artwork/centos-web/jekyll-theme-centos
|
|
255
256
|
licenses:
|
|
256
257
|
- MIT
|