forked from daattali/beautiful-jekyll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_config.yml
160 lines (123 loc) · 4.35 KB
/
_config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
# --- Required options --- #
# Name of website
title: Gary Rowe's personal blog
# Your name to show in the footer
author: Gary Rowe
# --- List of links in the navigation bar --- #
navbar-links:
Articles: "/tags/"
About Me: "aboutme"
Projects:
- Attestant: "https://www.attestant.io/"
- Jade Research: "https://jaderesearch.org"
- hid4java: "https://github.com/gary-rowe/hid4java"
# --- Logo --- #
# Image to show in the navigation bar - works best with a square image
# Remove this parameter if you don't want an image in the navbar
avatar: "https://www.gravatar.com/avatar/232628cea0e6482f1afb285a92ebe6f7"
# By default, the image is cut into a circle. You can disable this behaviour by setting 'round-avatar: false'
round-avatar: true
# --- Footer social media links --- #
# Select the social network links that you want to show in the footer.
# Uncomment the links you want to show and add your information to each one.
social-network-links:
email: "g.rowe@froot.co.uk"
github: gary-rowe
twitter: CryptoGary
linkedin: froot
stackexchange: "/170199/gary-rowe"
telegram: gary_rowe
# If you want to show a link to an RSS in the footer, add the site description here.
# If you don't want to show an RSS link, remove the following line.
rss-description: A collection of personal blog articles by Gary Rowe
# --- General options --- #
# Select which social network share links to show in posts
share-links-active:
twitter: true
linkedin: true
# How to display the link to your website in the footer
# Remove this if you don't want a link in the footer
url-pretty: "gary-rowe.com"
# Excerpt word length - Truncate the excerpt of each post on the feed page to the specified number of words
excerpt_length: 100
# Whether or not to show an excerpt for every blog post in the feed page
feed_show_excerpt: true
# Whether or not to show a list of tags below each post preview in the feed page
feed_show_tags: true
# The keywords to associate with your website, for SEO purposes
keywords: "cryptocurrency,bitcoin,ethereum,monero,attestant"
# --- Colours / background image --- #
# Personalize the colours in your website. Colour values can be any valid CSS colour
navbar-col: "#EAEAEA"
navbar-text-col: "#404040"
navbar-border-col: "#DDDDDD"
page-col: "#FFFFFF"
text-col: "#404040"
link-col: "#008AFF"
hover-col: "#0085A1"
footer-col: "#EAEAEA"
footer-text-col: "#777777"
footer-link-col: "#404040"
# Suggest a colour for mobile browsers to use as the browser's theme. This is only supported by a few mobile browsers.
#mobile-theme-col: "#0085A1"
# For any extra visual customization, you can include additional CSS files in every page on your site. List any custom CSS files here
#site-css:
# - "/assets/css/custom-styles.css"
# If you have common JavaScript files that should be included in every page, list them here
#site-js:
# - "/assets/js/custom-script.js"
# --- Web Analytics Section --- #
# Fill in your Google Analytics ID to track your website using Google Analytics
google_analytics: "24655452"
# --- Comments --- #
# To use Disqus comments, sign up to https://disqus.com and fill in your Disqus shortname (NOT the userid)
#disqus: "agilestack"
# --- Misc --- #
# Ruby Date Format to show dates of posts
date_format: "%B %-d, %Y"
# --- You don't need to touch anything below here (but you can if you want) --- #
# Output options (more information on Jekyll's site)
timezone: "Europe/London"
markdown: kramdown
highlighter: rouge
permalink: /:year-:month-:day-:title/
paginate: 5
kramdown:
input: GFM
# Default YAML values (more information on Jekyll's site)
defaults:
-
scope:
path: ""
type: "posts"
values:
layout: "post"
comments: true # add comments to all blog posts
social-share: true # add social media sharing buttons to all blog posts
-
scope:
path: "" # any file that's not a post will be a "page" layout by default
values:
layout: "page"
# Exclude these files from production site
exclude:
- beautiful-jekyll-theme
- CHANGELOG.md
- CNAME
- Gemfile
- Gemfile.lock
- LICENSE
- README.md
- screenshot.png
- .idea/
- .github/
- .gitattributes
- .gitignore
plugins:
- jekyll-paginate
- jekyll-redirect-from
- jekyll-remote-theme
- jekyll-sitemap
# - jekyll-target-blank Not compatible with GitHub Pages yet
# Use a remote theme
remote_theme: daattali/beautiful-jekyll@5.0.0