jekyll-theme-centos 2.3.0.beta.129 → 2.3.0.beta.130
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_config.yml +151 -0
- 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
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2d1515b0adf69667f42d26eb7bdf83d5d06e29956c75809200846b31ddd493c1
|
4
|
+
data.tar.gz: ae8137c06e0fe3fa51a406da9b54055887d99860a554896006f5fa6dd8ddc2fd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 72413483d8c460bd44822bbad3c4fb424ddfd1238928441e99e9f292d02e21865a94a4e0cd1c1ad997c8f000e00f07e108604ededb809961f8a1c2ea76552f76
|
7
|
+
data.tar.gz: 03efe2a7e9009ffec3ea81d35065f43414a503aac747f6474c474c4f1a996751d66792c8f5da2e41e0a998d2f1ac83bfaec0f103b9f0b4e47f297c9503562566
|
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
|
data/assets/icons/favicon-16.png
CHANGED
Binary file
|
data/assets/icons/favicon-32.png
CHANGED
Binary file
|
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.3.0.beta.
|
4
|
+
version: 2.3.0.beta.130
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Release
|
@@ -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
|