Skip to content

Commit 40ec8e7

Browse files
committed
Updated config based on default.
1 parent ad4fd29 commit 40ec8e7

File tree

1 file changed

+268
-72
lines changed

1 file changed

+268
-72
lines changed

_config.yml

Lines changed: 268 additions & 72 deletions
Original file line numberDiff line numberDiff line change
@@ -8,46 +8,220 @@
88
# For technical reasons, this file is *NOT* reloaded automatically when you use
99
# 'bundle exec jekyll serve'. If you change this file, please restart the server process.
1010

11+
# Theme Settings
12+
#
13+
remote_theme: "mmistakes/minimal-mistakes"
14+
minimal_mistakes_skin: "default" # "air", "aqua", "contrast", "dark", "dirt", "neon", "mint", "plum", "sunrise"
15+
1116
# Site settings
1217
# These are used to personalize your new site. If you look in the HTML files,
1318
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
1419
# You can create any custom variable you would like, and they will be accessible
1520
# in the templates via {{ site.myvariable }}.
16-
title: MM
17-
email:
18-
description: >- # this means to ignore newlines until "baseurl:"
19-
Write an awesome description for your new site here. You can edit this
20-
line in _config.yml. It will appear in your document head meta (for
21-
Google search results) and in your feed.xml site description.
22-
twitter_username: username
23-
github_username: username
24-
minimal_mistakes_skin: default
25-
search: true
26-
27-
# Build settings
21+
# Site Settings
22+
#
23+
locale : "en"
24+
title : "Python Accelerator Middle Layer"
25+
title_separator : "|"
26+
subtitle : # site tagline that appears below site title in masthead
27+
description : "Website for the Python Accelerator Middle Layer collaboration."
28+
url : https://python-accelerator-middle-layer.github.io"
29+
baseurl : # the subpath of your site, e.g. "/blog"
30+
repository : "python-accelerator-middle-layer/python-accelerator-middle-layer.github.io"
31+
teaser : # path of fallback teaser image, e.g. "/assets/images/500x300.png"
32+
logo : # path of logo image to display in the masthead, e.g. "/assets/images/88x88.png"
33+
words_per_minute : 200
34+
reCaptcha:
35+
siteKey :
36+
secret :
37+
atom_feed:
38+
path : # blank (default) uses feed.xml
39+
hide : # true, false (default)
40+
search : # true, false (default)
41+
search_full_content : # true, false (default)
42+
search_provider : # lunr (default), algolia, google
43+
lunr:
44+
search_within_pages : # true, false (default)
45+
algolia:
46+
application_id : # YOUR_APPLICATION_ID
47+
index_name : # YOUR_INDEX_NAME
48+
search_only_api_key : # YOUR_SEARCH_ONLY_API_KEY
49+
powered_by : # true (default), false
50+
google:
51+
search_engine_id : # YOUR_SEARCH_ENGINE_ID
52+
instant_search : # false (default), true
53+
54+
#search: true
55+
56+
# SEO Related
57+
google_site_verification :
58+
bing_site_verification :
59+
naver_site_verification :
60+
yandex_site_verification :
61+
baidu_site_verification :
62+
63+
# Social Sharing
64+
twitter:
65+
username :
66+
facebook:
67+
username :
68+
app_id :
69+
publisher :
70+
og_image : # Open Graph/Twitter default site image
71+
# For specifying social profiles
72+
# - https://developers.google.com/structured-data/customize/social-profiles
73+
social:
74+
type : # Person or Organization (defaults to Person)
75+
name : # If the user or organization name differs from the site's name
76+
links: # An array of links to social media profiles
77+
78+
# Analytics
79+
analytics:
80+
provider : # false (default), "google", "google-universal", "google-gtag", "custom"
81+
google:
82+
tracking_id :
83+
anonymize_ip : # true, false (default)
84+
85+
# Site Author
86+
author:
87+
name : "Python Accelerator Middle Layer collaboration"
88+
avatar : # path of avatar image, e.g. "/assets/images/bio-photo.jpg"
89+
bio : #"I am an **amazing** person."
90+
location : #"Somewhere"
91+
email : pyaml-steering-committee-contact@esrf.fr.
92+
# links:
93+
# - label: "Email"
94+
# icon: "fas fa-fw fa-envelope-square"
95+
# # url: "mailto:your.name@email.com"
96+
# - label: "Website"
97+
# icon: "fas fa-fw fa-link"
98+
# # url: "https://your-website.com"
99+
# - label: "Twitter"
100+
# icon: "fab fa-fw fa-twitter-square"
101+
# # url: "https://twitter.com/"
102+
# - label: "Facebook"
103+
# icon: "fab fa-fw fa-facebook-square"
104+
# # url: "https://facebook.com/"
105+
# - label: "GitHub"
106+
# icon: "fab fa-fw fa-github"
107+
# # url: "https://github.com/"
108+
# - label: "Instagram"
109+
# icon: "fab fa-fw fa-instagram"
110+
# # url: "https://instagram.com/"
111+
112+
113+
# Site Footer
114+
footer:
115+
links:
116+
- label: "Twitter"
117+
icon: "fab fa-fw fa-twitter-square"
118+
# url:
119+
- label: "Facebook"
120+
icon: "fab fa-fw fa-facebook-square"
121+
# url:
122+
- label: "GitHub"
123+
icon: "fab fa-fw fa-github"
124+
# url:
125+
- label: "GitLab"
126+
icon: "fab fa-fw fa-gitlab"
127+
# url:
128+
- label: "Bitbucket"
129+
icon: "fab fa-fw fa-bitbucket"
130+
# url:
131+
- label: "Instagram"
132+
icon: "fab fa-fw fa-instagram"
133+
# url:
134+
135+
# Reading Files
136+
include:
137+
- .htaccess
138+
- _pages
139+
exclude:
140+
- "*.sublime-project"
141+
- "*.sublime-workspace"
142+
- vendor
143+
- .asset-cache
144+
- .bundle
145+
- .jekyll-assets-cache
146+
- .sass-cache
147+
- assets/js/plugins
148+
- assets/js/_main.js
149+
- assets/js/vendor
150+
- Capfile
151+
- CHANGELOG
152+
- config
153+
- Gemfile
154+
- Gruntfile.js
155+
- gulpfile.js
156+
- LICENSE
157+
- log
158+
- minimal-mistakes-jekyll.gemspec
159+
- node_modules
160+
- package.json
161+
- package-lock.json
162+
- Rakefile
163+
- README
164+
- tmp
165+
- /docs # ignore Minimal Mistakes /docs
166+
- /test # ignore Minimal Mistakes /test
167+
keep_files:
168+
- .git
169+
- .svn
170+
encoding: "utf-8"
171+
markdown_ext: "markdown,mkdown,mkdn,mkd,md"
172+
173+
# Conversion
28174
markdown: kramdown
29-
remote_theme: mmistakes/minimal-mistakes
175+
highlighter: rouge
176+
lsi: false
177+
excerpt_separator: "\n\n"
178+
incremental: false
179+
180+
# Markdown Processing
181+
kramdown:
182+
input: GFM
183+
hard_wrap: false
184+
auto_ids: true
185+
footnote_nr: 1
186+
entity_output: as_char
187+
toc_levels: 1..6
188+
smart_quotes: lsquo,rsquo,ldquo,rdquo
189+
enable_coderay: false
190+
191+
# Sass/SCSS
192+
sass:
193+
sass_dir: _sass
194+
style: compressed # https://sass-lang.com/documentation/file.SASS_REFERENCE.html#output_style
195+
30196
# Outputting
31197
permalink: /:categories/:title/
32-
paginate: 5 # amount of posts to show
33-
paginate_path: /page:num/
34198
timezone: # https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
35199

36-
include:
37-
- _pages
38-
39-
# Exclude from processing.
40-
# The following items will not be processed, by default. Create a custom list
41-
# to override the default setting.
42-
# exclude:
43-
# - Gemfile
44-
# - Gemfile.lock
45-
# - node_modules
46-
# - vendor/bundle/
47-
# - vendor/cache/
48-
# - vendor/gems/
49-
# - vendor/ruby/
200+
# Pagination with jekyll-paginate
201+
paginate: 5 # amount of posts to show
202+
paginate_path: /page:num/
50203

204+
# Pagination with jekyll-paginate-v2
205+
# See https://github.com/sverrirs/jekyll-paginate-v2/blob/master/README-GENERATOR.md#site-configuration
206+
# for configuration details
207+
pagination:
208+
# Set enabled to true to use paginate v2
209+
# enabled: true
210+
debug: false
211+
collection: 'posts'
212+
per_page: 10
213+
permalink: '/page/:num/'
214+
title: ':title - page :num'
215+
limit: 0
216+
sort_field: 'date'
217+
sort_reverse: true
218+
category: 'posts'
219+
tag: ''
220+
locale: ''
221+
trail:
222+
before: 2
223+
after: 2
224+
51225
# Plugins (previously gems:)
52226
plugins:
53227
- jekyll-paginate
@@ -57,36 +231,50 @@ plugins:
57231
- jemoji
58232
- jekyll-include-cache
59233

60-
author:
61-
name : "First Lastname"
62-
avatar : "/assets/images/bio-photo.jpg"
63-
bio : "My awesome biography constrained to a sentence or two goes here."
64-
links:
65-
- label: "Website"
66-
icon: "fas fa-fw fa-link"
67-
url: "https://"
68-
- label: "Twitter"
69-
icon: "fab fa-fw fa-twitter-square"
70-
url: "https://twitter.com/"
71-
- label: "GitHub"
72-
icon: "fab fa-fw fa-github"
73-
url: "https://github.com/"
74-
- label: "Instagram"
75-
icon: "fab fa-fw fa-instagram"
76-
url: "https://instagram.com/"
234+
# mimic GitHub Pages with --safe
235+
whitelist:
236+
- jekyll-paginate
237+
- jekyll-sitemap
238+
- jekyll-gist
239+
- jekyll-feed
240+
- jekyll-include-cache
77241

78-
footer:
79-
links:
80-
- label: "Twitter"
81-
icon: "fab fa-fw fa-twitter-square"
82-
url: "https://twitter.com/"
83-
- label: "GitHub"
84-
icon: "fab fa-fw fa-github"
85-
url: "https://github.com/"
86-
- label: "Instagram"
87-
icon: "fab fa-fw fa-instagram"
88-
url: "https://instagram.com/"
242+
# Archives
243+
# Type
244+
# - GitHub Pages compatible archive pages built with Liquid ~> type: liquid (default)
245+
# - Jekyll Archives plugin archive pages ~> type: jekyll-archives
246+
# Path (examples)
247+
# - Archive page should exist at path when using Liquid method or you can
248+
# expect broken links (especially with breadcrumbs enabled)
249+
# - <base_path>/tags/my-awesome-tag/index.html ~> path: /tags/
250+
# - <base_path>/categories/my-awesome-category/index.html ~> path: /categories/
251+
# - <base_path>/my-awesome-category/index.html ~> path: /
252+
category_archive:
253+
type: liquid
254+
path: /categories/
255+
tag_archive:
256+
type: liquid
257+
path: /tags/
258+
# https://github.com/jekyll/jekyll-archives
259+
# jekyll-archives:
260+
# enabled:
261+
# - categories
262+
# - tags
263+
# layouts:
264+
# category: archive-taxonomy
265+
# tag: archive-taxonomy
266+
# permalinks:
267+
# category: /categories/:name/
268+
# tag: /tags/:name/
89269

270+
# HTML Compression
271+
# - https://jch.penibelst.de/
272+
compress_html:
273+
clippings: all
274+
ignore:
275+
envs: development
276+
277+
# Defaults
90278
defaults:
91279
# _posts
92280
- scope:
@@ -96,20 +284,28 @@ defaults:
96284
layout: single
97285
author_profile: true
98286
read_time: true
99-
comments: true
287+
comments: # true
100288
share: true
101-
related: true
102-
# _pages
103-
- scope:
104-
path: "_pages"
105-
type: pages
106-
values:
107-
layout: single
108-
author_profile: true
289+
related: true
290+
291+
#defaults:
292+
# # _posts
293+
# - scope:
294+
# path: ""
295+
# type: posts
296+
# values:
297+
# layout: single
298+
# author_profile: true
299+
# read_time: true
300+
# comments: true
301+
# share: true
302+
# related: true
303+
# # _pages
304+
# - scope:
305+
# path: "_pages"
306+
# type: pages
307+
# values:
308+
# layout: single
309+
# author_profile: true
310+
109311

110-
category_archive:
111-
type: liquid
112-
path: /categories/
113-
tag_archive:
114-
type: liquid
115-
path: /tags/

0 commit comments

Comments
 (0)