-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
145 lines (111 loc) · 3.83 KB
/
config.toml
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
# Configuration
title = "Software and Math"
baseurl = "https://vchernoy.xyz/" # End your URL with a `/` trailing slash.
publishDir = "public"
themesDir = "themes"
buildDrafts = false
theme = "academic"
enableEmoji = true
footnotereturnlinkcontents = "<sup>^</sup>"
ignoreFiles = ["\\.Rmd$", "\\.Rmarkdown$", "_files$", "_cache$"]
preserveTaxonomyNames = true
paginate = 10
# Enable comments by entering your Disqus shortname
disqusShortname = ""
# Enable analytics by entering your Google Analytics tracking ID
googleAnalytics = "UA-102853829-1"
# Default language to use (if you setup multilingual support)
defaultContentLanguage = "en"
hasCJKLanguage = false # Set `true` for Chinese/Japanese/Korean languages.
defaultContentLanguageInSubdir = false
enableGitInfo = true
[outputs]
home = [ "HTML", "CSS", "RSS" ]
section = [ "HTML", "RSS" ]
#[blackfriday]
# hrefTargetBlank = true
# Configure BlackFriday Markdown rendering.
# See: https://gohugo.io/getting-started/configuration/#configure-blackfriday
[blackfriday]
hrefTargetBlank = true # `true` opens external links in a new tab.
fractions = true # `false` disables smart fractions (e.g. 5/12 formatted as a fraction).
smartypants = true # `false` disables all smart punctuation substitutions (e.g. smart quotes, dashes, fractions).
# extensions = ["backslashLineBreak"]
[params]
# Color theme.
# Choose from `default`, `ocean`, `forest`, `coffee`, `dark`, or `1950s`.
color_theme = "default"
# Font style.
# Choose from `default` or `classic`.
font = "default"
name = "Slava Chernoy"
role = "Software Engineer"
# Date format (refer to Go's date format: http://flippinggodateformat.com )
# Examples: "Mon, Jan 2, 2006" or "2006-01-02"
date_format = "Mon, Jan 2, 2006"
# Enable global LaTeX math rendering?
math = true
highlight = true
highlight_languages = ["go", "python", "rust", "scala", "bash", "cpp", "java", "dockerfile", "ebnf", "protobuf", "sql", "thrift", "yaml"]
highlight_version = "9.12.0"
highlight_style = "idea"
# Enable native social sharing buttons?
sharing = false
# Link custom CSS and JS assets
# (relative to /static/css and /static/js respectively)
custom_css = []
custom_js = []
# Show estimated reading time for posts?
reading_time = true
# Display comment count? Requires commenting to be enabled.
comment_count = true
# Display next/previous section pager?
section_pager = false
# Social/Academic Networking
[[params.social]]
icon = "linkedin"
icon_pack = "fa"
link = "https://linkedin.com/in/slava-chernoy-9859a81/"
[[params.social]]
icon = "google-scholar"
icon_pack = "ai"
link = "https://scholar.google.co.uk/citations?user=3tWEfksAAAAJ"
[[params.social]]
icon = "github"
icon_pack = "fa"
link = "https://github.com/vchernoy"
[[params.social]]
icon = "stack-overflow"
icon_pack = "fa"
link = "https://stackoverflow.com/users/276287/slava"
[[params.social]]
icon = "dblp"
icon_pack = "ai"
link = "http://dblp.uni-trier.de/pers/hd/c/Chernoy:Viacheslav"
[[params.social]]
icon = "springer"
icon_pack = "ai"
link = "https://link.springer.com/search?query=Viacheslav+Chernoy"
# Navigation Links
# To link a homepage widget, specify the URL as a hash `#` followed by the filename of the
# desired widget in your `content/home/` folder.
# The weight parameter defines the order that the links will appear in.
[params.menus]
# Align the main menu to the right of the page? (true/false)
align_right = true
[[menu.main]]
name = "Home"
url = "#about"
weight = 1
[[menu.main]]
name = "Posts"
url = "#posts"
weight = 2
# Taxonomies.
[taxonomies]
tag = "tags"
category = "categories"
publication_type = "publication_types"
# Configure the English version of the website.
[languages.en]
languageCode = "en-us"