-
Notifications
You must be signed in to change notification settings - Fork 151
/
config.toml
91 lines (73 loc) · 2.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
# Site settings
baseURL = "/"
languageCode = "en-us"
title = "The DevOps Toolkit Series"
theme = "forty"
# Enter your tracking code to enable Google Analytics
googleAnalytics = "UA-174219852-1"
# Enter your disqus shortname to enable comments
disqusShortname = ""
[params]
# Provide your metadata here.
name = "Viktor Farcic"
description = "Books and courses dedicated to DevOps practices and tools"
# Link custom assets relative to /static
custom_css = []
custom_js = []
favicon = "favicon.ico"
# Just a custom image variable, please define it in .md files for content.
image = ""
# 404 error customization
[params.error404]
heading = "Page couldn't be found"
text = "Please visit [this page](/)"
# Navigation Section
# TODO: Remove params
[params.navigation]
title = "The DevOps Toolkit"
subtitle = "By Viktor Farcic"
menu = "Menu"
# Optional logo as brand stored in img/
# logo = "logo.png"
[[params.navigation.links]]
name = "Home"
url = "#"
# Banner section
[params.banner]
# To change the background image on the homepage banner, replace 'banner.jpg' in
# the 'static/img' folder.
title = "The DevOps Toolkit Series"
subtitle = "Where DevOps becomes practice"
buttonText = "Get Started"
# Tiles Section
[params.tiles]
enable = true
# Display your showcases here.
[[params.tiles.showcase]]
title = "The YouTube Channel"
subtitle = "DevOps Toolkit"
image = "youtube.png"
url = "posts/youtube"
[params.blog]
# All blogs defined in their own files. You can find example blogs
# at 'exampleSite/content/blogs'. Copy the 'blogs' folder into the 'content' directory
# at the root of this Hugo site.
# For more informtion take a look at the README.
# To add more blogs just copy and paste the code.
# Footer section
[params.footer]
enable = true
copyright = "Viktor Farcic"
# Uses font awesome icons
[[params.footer.social]]
icon = "fa-twitter"
url= "https://www.twitter.com/vfarcic"
label = "Twitter"
[[params.footer.social]]
icon = "fa-github"
url= "https://www.github.com/vfarcic"
label = "GitHub"
[[params.footer.social]]
icon = "fa-linkedin"
url= "https://www.linkedin.com/in/viktorfarcic/"
label = "LinkedIn"