-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
118 lines (97 loc) · 3.32 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
theme = "hugo-theme-slim"
relativeURLs = true
baseURL = "/"
languageCode = "en-us"
title = "pymc-learn Developers Blog"
copyright = "© 2018 -- 2019 pymc-learn Developers Team | [Github](https://github.com/pymc-learn) | [Twitter](https://twitter.com/pymc_learn)"
enableEmoji = true
footnotereturnlinkcontents = "<sup>^</sup>"
# Enable comments by entering your Disqus shortname
disqusShortname = "pymc-learn-blog"
# Default language to use (if you setup multilingual support)
defaultContentLanguage = "en"
defaultContentLanguageInSubdir = false
[permalinks]
post = "/post/:year/:month/:day/:slug/"
[blackfriday]
hrefTargetBlank = true
[params]
# 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?
# If false, you can enable it locally on a per page basis.
math = true
# For more info on the highlighting options, see:
# https://gcushen.github.io/hugo-academic-demo/post/writing-markdown-latex/#highlighting-options
highlight = true
highlight_languages = []
# highlight_style = "github"
# highlight_version = "9.9.0"
# Enable native social sharing buttons?
sharing = true
# Link custom CSS and JS assets
# (relative to /static/css and /static/js respectively)
custom_css = ["slim.css"]
custom_js = ["slim.js"]
# Publication types.
# Used to categorize publications.
# The index of the publication type in the list is used as its unique numerical identifier.
# The numeric ID is used in a publication's frontmatter to categorize it.
# The language can be edited below.
# For multi-lingual sites, copy this block to each language section at the end of this file.
publication_types = [
'Uncategorized', # 0
'Conference proceedings', # 1
'Journal', # 2
'Work in progress', # 3
'Technical report', # 4
'Book', # 5
'Book chapter' # 6
]
# Social/Academic Networking
#
# Icon pack "fa" includes the following social network icons:
#
# twitter, weibo, linkedin, github, facebook, pinterest, google-plus,
# youtube, instagram, soundcloud
#
# For email icon, use "fa" icon pack, "envelope" icon, and
# "mailto:[email protected]" as the link.
#
# Full list: https://fortawesome.github.io/Font-Awesome/icons/
#
# Icon pack "ai" includes the following academic network icons:
#
# google-scholar, arxiv, orcid, researchgate, mendeley
#
# Full list: https://jpswalsh.github.io/academicons/
[[params.social]]
icon = "envelope"
icon_pack = "fa"
link = "mailto:[email protected]"
[[params.social]]
icon = "twitter"
icon_pack = "fa"
link = "//twitter.com/pymc_learn"
[[params.social]]
icon = "github"
icon_pack = "fa"
link = "//github.com/pymc-learn"
# 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.
[[menu.main]]
name = "Home"
url = "/"
weight = 1
[[menu.main]]
name = "pymc-learn"
url = "http://pymc-learn.org"
weight = 2
# Taxonomies.
[taxonomies]
tag = "tags"
category = "categories"
publication_type = "publication_types"