jekyll-theme-centos 2.3.0.beta.129 → 2.3.0.beta.131

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f7ee7a5077d0b8ef9cccbcb30a922e240885f35b5075a54325a625b27d20e271
4
- data.tar.gz: e23f3d12d1fa6dc18fb65dfcdd9219bc926a3910f106288c2afd6187b9fecfcb
3
+ metadata.gz: cfa95875c465f8e81df4252d75352d290eb5f4a6779dc7b1c2a70f13ccde1a62
4
+ data.tar.gz: 9113e8a4927f54a92c591bac7a12f4d32e9b98b65784ba63eb258759964d81ae
5
5
  SHA512:
6
- metadata.gz: 0a1ee9a7427669aefc0d631fd2217b7cb91bab407c136724453e6f683a73a4038e72ea7e39fa0e263bcc167541007707ad30f7567ecf36623eb41f016d5ba67c
7
- data.tar.gz: 0b48a41f00dbec12ddd36c6bacc9bd0e4ef8bf3fc2170ccdc88abe3e93cca70e5a6e2933e5ffcb96cdb43526de557744eb6db82c9d4d2c903a0dcb2336c17ff6
6
+ metadata.gz: 4737b765e5006a5efe17afa56edecaf4a59385b4b0d8d202448a71388b874256e6cc51168126a6d1343eab74055ec6829e6a0ed4bc5f7d187d817b2d244b2980
7
+ data.tar.gz: a769055a38ff9700571c49f40989fba269d39c12914b001032d8be3474d983aeed93b6babd2a1fe8a71a89977c2ed82d3bcf25ae4dd87557e5e624662e41f6f9
data/_config.yml ADDED
@@ -0,0 +1,151 @@
1
+ ---
2
+ # Welcome to Jekyll!
3
+ #
4
+ # This config file is meant for settings that affect your whole blog, values
5
+ # which you are expected to set up once and rarely edit after that. If you find
6
+ # yourself editing this file very often, consider using Jekyll's data files
7
+ # feature for the data you need to update frequently.
8
+ #
9
+ # For technical reasons, this file is *NOT* reloaded automatically when you use
10
+ # 'bundle exec jekyll serve'. If you change this file, please restart the
11
+ # server process.
12
+ #
13
+ # If you need help with YAML syntax, here are some quick references for you:
14
+ # https://learn-the-web.algonquindesign.ca/topics/markdown-yaml-cheat-sheet/#yaml
15
+ # https://learnxinyminutes.com/docs/yaml/
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
+ # site.manifestation - Set the name of the visual manifestation you are
26
+ # providing a site for. The theme presents this name on the right side of the
27
+ # CentOS logo. If this value is not empty, the navbar data must be related to
28
+ # the specific visual manifestation.
29
+ manifestation: ""
30
+
31
+ # site.navbar_data_dirname - Set the directory name where the navbar data files
32
+ # is stored. For example, if the navbar file is at `_data/base/navbar.yml', the
33
+ # value you need to provide is `base'.
34
+ navbar_data_dirname: "base"
35
+
36
+ # site.navbar_data_filename - Set the name of the navbar data file. For
37
+ # example, if the navbar file is at `_data/base/navbar.yml', the value you need
38
+ # to provide is `navbar', without the extension.
39
+ navbar_data_filename: "navbar"
40
+
41
+ # The base hostname & protocol for your site, e.g. http://example.com
42
+ url: "https://centos.gitlab.io"
43
+
44
+ # The subpath of your site, e.g. /blog
45
+ baseurl: "/artwork/centos-web/jekyll-theme-centos"
46
+
47
+ defaults:
48
+ - scope:
49
+ path: "" # an empty string here means all files in the project.
50
+ values:
51
+ layout: "base/default"
52
+ with_breadcrumbs: true
53
+ with_toc: true
54
+ with_datatables: false
55
+ with_clipboard: false
56
+ with_announcements: {}
57
+
58
+ plugins:
59
+ - jekyll-feed
60
+ - jekyll-toc
61
+ - jekyll-paginate-v2
62
+
63
+ permalink: /:path/:basename/index.html
64
+
65
+ collections:
66
+ sponsors:
67
+ posts:
68
+ permalink: /:categories/:title/
69
+
70
+ exclude:
71
+ - .npm
72
+ - .bundle/
73
+ - .sass-cache/
74
+ - .jekyll-cache/
75
+ - node_modules/
76
+ - Gemfile
77
+ - Gemfile.lock
78
+ - .git
79
+
80
+ sass:
81
+ style: compressed
82
+ sass_dir: _sass
83
+
84
+ # ----------------------------------------------------------------------
85
+ # Jekyll 3 Pagination Gem
86
+ # ----------------------------------------------------------------------
87
+ pagination:
88
+ # Site-wide kill switch, disabled here it doesn't run at all
89
+ enabled: true
90
+
91
+ # Set to 'true' to enable pagination debugging. This can be enabled in the
92
+ # site config or only for individual pagination pages
93
+ debug: true
94
+
95
+ # The default document collection to paginate if nothing is specified
96
+ # ('posts' is default)
97
+ collection: "posts"
98
+
99
+ # How many objects per paginated page, used to be `paginate` (default: 0,
100
+ # means all)
101
+ per_page: 6
102
+
103
+ # The permalink structure for the paginated pages (this can be any level
104
+ # deep)
105
+ #permalink: '/page/:num.html' # Pages are simple html files
106
+ #permalink: '/page/:num' # Pages are html files, linked jekyll extensionless permalink style.
107
+ #permalink: '/news-and-events/:num/' # Pages are index.html inside this folder (default)
108
+ permalink: "/page/:num/" # Pages are index.html inside this folder (default)
109
+
110
+ # Optional the title format for the paginated pages (supports :title for
111
+ # original page title, :num for pagination page number, :max for total number
112
+ # of pages)
113
+ title: ":title - page :num"
114
+
115
+ # Limit how many pagenated pages to create (default: 0, means all)
116
+ limit: 0
117
+
118
+ # Optional, defines the field that the posts should be sorted on (omit to
119
+ # default to 'date')
120
+ sort_field: "date"
121
+
122
+ # Optional, sorts the posts in reverse order (omit to default decending or
123
+ # sort_reverse: true)
124
+ sort_reverse: true
125
+
126
+ # Optional, the default category to use, omit or just leave this as 'posts'
127
+ # to get a backwards-compatible behavior (all posts)
128
+ category: "posts"
129
+
130
+ # Optional, the default tag to use, omit to disable
131
+ tag: ""
132
+
133
+ # Optional, the default locale to use, omit to disable (depends on a field
134
+ # 'locale' to be specified in the posts, in reality this can be any value,
135
+ # suggested are the Microsoft locale-codes (e.g. en_US, en_GB) or simply the
136
+ # ISO-639 language code).
137
+ locale: ""
138
+
139
+ # Optional, omit or set both before and after to zero to disable. Controls
140
+ # how the pagination trail for the paginated pages look like.
141
+ trail:
142
+ before: 2
143
+ after: 2
144
+
145
+ # Optional, the default file extension for generated pages (e.g html, json, xml).
146
+ # Internally this is set to html by default
147
+ extension: html
148
+
149
+ # Optional, the default name of the index file for generated pages (e.g.
150
+ # 'index.html') Without file extension.
151
+ indexpage: "index"
Binary file
Binary file
Binary file
Binary file
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.3.0.beta.129
4
+ version: 2.3.0.beta.131
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-17 00:00:00.000000000 Z
11
+ date: 2023-06-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -45,6 +45,7 @@ executables: []
45
45
  extensions: []
46
46
  extra_rdoc_files: []
47
47
  files:
48
+ - _config.yml
48
49
  - _data/base/footer.yml
49
50
  - _data/base/identity.yml
50
51
  - _data/base/navbar.yml