-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhugo.toml
More file actions
70 lines (54 loc) · 1.32 KB
/
hugo.toml
File metadata and controls
70 lines (54 loc) · 1.32 KB
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
baseURL = 'https://nu113d.github.io'
languageCode = 'en-us'
title = 'nu113d.blog'
theme = 'typo'
[taxonomies]
tag = 'tags'
[params]
# Meta description
description = "Vaggelis Stoikos personal blog"
paginationSize = 100
hidePagination = true
listSummaries = true
# listDateFormat = '2002-04-16'
# Appearance settings
theme = 'dark'
colorPalette = 'gruvebox'
hideHeader = true
# Intro on main page, content is markdown
# homeIntroTitle = 'Hi!'
homeIntroContent = """
$ whoami
Hi, I'm nu113d, a Computer Science graduate and I currently work as a Software Engineer.
With a wide interest in computers, cybersecurity and electronics, I decided to blog about exciting things I dive into and research.
I hope you find my posts as interesting as I do!
"""
# Collection to display on home
homeCollectionTitle = 'Posts'
homeCollection = 'posts'
# Breadcrumbs
[params.breadcrumbs]
enabled = true
showCurrentPage = true
home = "Home"
# Social icons
[[params.social]]
name = "linkedin"
url = "https://linkedin.com/in/vaggelis-stoikos-a45121224"
[[params.social]]
name = "github"
url = "https://github.com/nu113d"
# Main menu pages
[[params.menu]]
name = "home"
url = "/"
[[params.menu]]
name = "posts"
url = "/posts"
[[params.menu]]
name = "readme"
url = "/readme"
# Syntax highlight on code blocks
[markup]
[markup.highlight]
style = 'emacs'