blob: d8f8b8002531a47e3306ad901909f5a9b9ec372b (
plain) (
blame)
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
|
# Jekyll
baseurl: /blog
exclude:
- Gemfile
- Gemfile.lock
- Makefile
- README.md
- vendor/
collections:
notes:
output: true
# Jekyll 4.0 or later:
#sort_by: title
defaults:
- scope:
path: ''
type: pages
values:
layout: page
navbar_priority: 999
- scope:
path: ''
type: posts
values:
layout: post
- scope:
path: ''
type: notes
values:
layout: page
excerpt_separator: ''
permalink: none
highlighter: rouge
markdown: kramdown
kramdown:
syntax_highlighter_opts:
span:
disable: true
# Plugins
plugins:
- jekyll-github-metadata
- jekyll-paginate
- jekyll-remote-theme
# jekyll-github-metadata
repository: egor-tensin/blog
# jekyll-paginate
paginate: 10
# jekyll-remote-theme
remote_theme: egor-tensin/jekyll-theme@236fc17283b4b58fb73314790d85d80c72e68e70
# Theme settings
settings:
project:
name: Blog
author:
name: Egor Tensin
email: Egor.Tensin@gmail.com
links:
- {rel: apple-touch-icon, sizes: 180x180, href: /assets/favicon/apple-touch-icon.png}
- {rel: icon, type: image/png, sizes: 32x32, href: /assets/favicon/favicon-32x32.png}
- {rel: icon, type: image/png, sizes: 16x16, href: /assets/favicon/favicon-16x16.png}
- {rel: manifest, href: /assets/favicon/site.webmanifest}
|