-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
76 lines (59 loc) · 2.04 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
baseURL = "https://mloning.github.io/website/"
languageCode = "en-us"
title = "Markus Löning"
theme = "ezhil"
copyright = "Copyright © 2024 Markus Löning"
enableEmoji=true
# Enable syntax highlighting.
pygmentsstyle = "vs"
pygmentscodefences = true
# pygmentsOptions = "linenos=table"
# Number of posts to show in recent posts list (Optional). Defaults to 10.
paginate = 10
enableGitInfo = true
# Number of characters to show in summary.
summaryLength = 20
[params]
# Blog subtitle which appears below blog title. Supports markdown.
subtitle = "Software Engineering & Machine Learning"
# Content types which are included in home page recent posts list.
mainSections = ["posts"]
# Content types which are excluded from Disqus comments.
disableDisqusTypes = ["page"]
# If social media links are enabled then enable this to fetch icons from CDN instead of hosted on your site.
featherIconsCDN = true
# Specify favicon (icons/i.png maps to static/icons/i.png). No favicon if not defined.
# favicon = "icons/myicon.png"
# Custom list of Javascript files to load. Just like custom CSS you can place js files under
# `static/js` folder and specify path here as `js/script-name.js`. You can also specify full url,
# for example you may want to include external JS library.
customJS = ["js/abc.js", "js/xyz.js", "https://code.jquery.com/jquery-3.4.1.js"]
# Main menu which appears below site header.
[[menu.main]]
name = "Home"
url = "/"
weight = 1
[[menu.main]]
name = "All posts"
url = "/posts"
weight = 2
[[menu.main]]
name = "About"
url = "/about"
weight = 3
# Social media links which shows up on site header.
# Uses feather icons for icons. You can [search icon names from here](https://feathericons.com/).
[[params.social]]
name = "Github"
icon = "github"
url = "https://github.com/mloning"
[[params.social]]
name = "Twitter"
icon = "twitter"
url = "https://twitter.com/mloning_"
[[params.social]]
name = "Linkedin"
icon = "linkedin"
url = "https://www.linkedin.com/in/mloning/"
# [taxonomies]
# tag = "tags"