-
Notifications
You must be signed in to change notification settings - Fork 9
/
_config.yml
287 lines (228 loc) · 10.4 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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
########################################################################################################################
# Site Settings #
########################################################################################################################
url: "https://tseknet.com"
baseurl: ''
########################################################################################################################
# General settings #
########################################################################################################################
lang: en
title: Dan Tsekhanskiy
description: SRE from a Windows guy
# A shorter description for the sidebar.
tagline: SRE from a Windows guy
keywords: [
'PowerShell',
'SCCM',
'pwsh',
'SysAdmin',
'Systems Administrator',
'DevOps',
'SRE',
'Python',
'Tutorials',
'Tips'
]
# A (square) logo for the sidebar.
# It also used by the `jekyll-seo-tag` plugin.
logo: /assets/img/logo.png
# This should be the same author as first entry in `_data/authors.yml`.
author:
# Used by `jekyll-feed`:
name: Dan Tsekhanskiy
email: [email protected]
# # Used by `jekyll-seo-tag`:
twitter: tseknet
rss: true
share-links-active:
twitter: true
facebook: true
linkedin: true
# Add links to the sidebar.
menu:
- title: Blog
url: /blog/
- title: About
url: /about/
copyright: ''
permalink: /blog/:title
########################################################################################################################
# Jekyll Customizations #
########################################################################################################################
# Sidebar image and theme color of the site.
accent_image: /assets/img/sidebar-bg.jpg
accent_color: rgb(79,177,186)
# This is used for the `theme-color` meta tag,
# which changes the background color of the browser UI in certain browsers.
# Defaults to `accent_color`.
theme_color: rgb(8,46,57)
# The string encoding which fonts to fetch from Google Fonts.
# See: <https://hydejack.com/docs/configuration/>
google_fonts: Roboto+Slab:700|Noto+Sans:400,400i,700,700i
# The text font. Expects a string that is a valid CSS font-family value.
# To change font-weight, see _sass/variables.scss
font: Noto Sans, Helvetica, Arial, sans-serif
# The font used for headings. Expects a string that is a valid CSS font-family value.
# To change font-weight, see _sass/variables.scss
font_heading: Roboto Slab, Helvetica, Arial, sans-serif
# The font used for code blocks. Expects a string that is a valid CSS font-family value.
font_code: Fira Code, Menlo, Monaco, Consolas, monospace;
defaults:
# Don't include documents in assets in the sitemap
- scope:
path: assets/
values:
sitemap: false
# `jekyll-seo-tag` will mark collection outputs as `BlogPosting`,
# but we want them to be `WebPage`s:
- scope:
path: featured_tags/
type: featured_tags
values:
seo:
type: WebPage
kramdown:
math_engine: katex
math_engine_opts: {}
footnote_backlink: "↩︎"
########################################################################################################################
# Collections #
########################################################################################################################
collections:
featured_tags:
permalink: /tag/:name
output: true
########################################################################################################################
# 3rd Party Integrations #
########################################################################################################################
# Set the Google Analytics id to receive `pageview` events.
# To remove Google Anaylics from the page, remove the line below.
# google_analytics: <id>
# Setting a disqus shortname will enable the comment section on
# pages with `comments: true` in the front matter.
# disqus: <username>
# Setting a tinyletter username will enable the newsletter subscription box.
# PRO version only!
tinyletter: TsekNet
########################################################################################################################
# Hydejack (website theme) settings #
########################################################################################################################
hydejack:
# Configure the order of complementary content on blog posts
post_addons: [newsletter, about, related, random, comments]
# Set to `true` if you don't want to show an icon indicating external links
no_mark_external: true
# Set to `true` if third party plugins fail to work with dynamically loaded pages
no_push_state: true
# Set to `true` if you want to disable the drawer
no_drawer: false
# Set to `true` if you don't to use the auto-hiding (JavaScript based) navbar.
# Note that this will not hide the navbar completely, only replace it with a static one.
# Use custom css to hide completely, e.g. `#_navbar { display: none }`.
no_navbar: false
# Set to true to disable the built-in search functionality.
# Note that search is disabled during local use to save on build time.
# Run Jekyll with the `JEKYLL_ENV` environment variable set to `production` to enable.
no_search: false
# Set to `true` if you do not want parts of the css inlined in <head/>
# This will increase site build speed dramatically!
no_inline_css: true
# Set to `true` if you don't intend on changing the accent color on a per-page basis.
# This will increase site build speed!
no_page_style: true
# Code blocks and tables "break" the layout by spanning the full available width.
# Set this to true if you want them to be the same width as other content.
no_break_layout: true
# Set to `true` to disable the dynamic Table of Contents on large screens.
no_toc: false
# When set to `true`, will not extend the content in the "third column" on large screens.
# Instead, all content will remains within the center column.
# Note that this will not affect the Table of Contents, use `no_toc` instead.
no_third_column: false
# Set to `true` if you don't like oversized headlines on large screens.
no_large_headings: false
# You can set this to `true` if you don't want to set the `theme-color` meta tag,
# This only affects the meta tag, not the color specified in the app manifest.
no_theme_color: false
# Set to `true` when building with the `--lsi` option
use_lsi: true
# When using Google Analytics, set to `true` to display a cookie notice banner.
# When enabled, no user-related data will be stored until the user gives consent.
cookies_banner: false
# Set to `true` if you would like to add a "Powered by Hydejack" link in the footer.
# Note that this setting has no effect when using the free version.
advertise: false
# Buyers of the PRO version can opt to hide all dates from the theme.
# Frequent consumers of online content will know that nothing devalues a post like
# seeing an old date.
hide_dates: false
# Note that dark mode only works in the PRO version of Hydejack.
dark_mode:
# Set to `true` to always use the dark theme.
always: false
# Set to `true` to use the dark theme based on visitors' preference (OS
# setting).
dynamic: true
# Set to `true` to allow visitors to switch between light and dark mode.
icon: true
########################################################################################################################
# Only use if you know what Service Workers are and how they can impact the #
# site! #
########################################################################################################################
offline:
enabled: false
cache_version: 7
precache_assets:
- /assets/img/swipe.svg
########################################################################################################################
# File Inclusion/Exclusion #
########################################################################################################################
exclude:
- .jekyll-cache
- .sass-cache
- vendor
- Gemfile
- Gemfile.lock
- README.md
- LICENSE
include:
- .well-known
########################################################################################################################
# Plugins #
########################################################################################################################
plugins:
- jekyll-default-layout
- jekyll-feed
- jekyll-optional-front-matter
- jekyll-redirect-from
- jekyll-relative-links
- jekyll-seo-tag
- jekyll-sitemap
- jekyll-include-cache
- jekyll-last-modified-at
########################################################################################################################
# SEO #
########################################################################################################################
# Where you proof that you own this site (used by jekyll-seo-tag)
google_site_verification: UA-175070505-1
# -- or --
# webmaster_verifications:
# google: <verification-id>
# bing: <verification-id>
# alexa:<verification-id>
# yandex: <verification-id>
# Used for twitter cards
twitter:
username: tseknet
# Used for facebook open graph
# facebook:
# app_id: <id>
# publisher: <id>
# admins: <id>
# Used on index and about sites
social:
name: Dan Tsekhanskiy
links:
- https://twitter.com/TsekNet
- https://github.com/TsekNet
- https://www.linkedin.com/in/TsekNet