-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathconfig.toml
98 lines (72 loc) · 2.24 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
baseURL = "https://openwhisk.blog/"
languageCode = "en-us"
title = "OpenWhisk and friends"
defaultContentLanguage = "en"
author = "Michele Sciabarra"
theme = "hugo-vitae"
paginate = 5
enableRobotsTXT = true
copyright = "© Copyright [Michele Sciabarrà](https://www.linkedin.com/in/msciab) | Book [Learning Apache OpenWhisk](https://www.oreilly.com/library/view/learning-apache-openwhisk/9781492046158/) published by [O'Reilly](https://www.oreilly.com/)"
pygmentsstyle = "colorful"
pygmentscodefences = true
pygmentscodefencesguesssyntax = true
googleAnalytics = ""
disqusShortname = ""
[taxonomies]
tag = "tags"
category = "categories"
series = "series"
[params]
# Add meta keywords in head part (Site Keywords or Tags of Page)
keywords = ["hugo","vitae","theme","static"]
# Add meta description in head part
description = "A blog about OpenWhisk, Nimbella and friends."
# Add pagetitle to homepage <title> tag
pagetitle = "A blog about OpenWhisk, Nimbella and friends."
# Add a subtitle to your website
subtitle = "[Michele Sciabarra](https://linkedin.com/in/msciab) blog advocating [Apache OpenWhisk](http://openwhisk.apache.org/)."
# Activate to show authors on pages if available
#listAuthor = true
# Add math typesetting with KaTeX (Global with this Param)
math = true
# Optional 80x80 avatar image.
avatar = "/img/pagurus-cartoon.png"
# Optional favicons for website
#favicon = true
# Add list of sections that should show up on the homepage
mainSections = ["post"]
# Add list of Sections/Types that should no be considered by RSS
#nofeedSections = ["post"]
# Deactivate Taxonomies for specific page types
#disableTaxoTypes = [""]
# Content types to disable Disqus on.
disableDisqusTypes = ["page"]
# Custom CSS applied to default styles. (Path is static/css/)
customCSS = "custom.css"
# Nav.
[[menu.main]]
name = "Home"
url = "/"
weight = 1
[[menu.main]]
name = "All Posts"
url = "/post"
weight = 2
[[menu.main]]
name = "About"
url = "/about"
weight = 3
[[menu.main]]
name = "Tags"
url = "/tags"
weight = 4
[[params.social]]
name = "Github"
icon = "fab fa-github"
url = "https://github.com/openwhisk-blog"
[[params.social]]
name = "RSS"
icon = "fas fa-rss"
url = "/index.xml"
[[deployment.targets]]
exclude= ".github/**"