-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhugo.toml
70 lines (54 loc) · 1.36 KB
/
hugo.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
baseURL = 'https://rubiagatra.github.io/'
languageCode = 'en-us'
title = 'Doni Rubiagatra'
theme = 'typo'
[taxonomies]
tag = 'tags'
[params]
# Meta description
description = "Doni Rubiagatra Tech Blog"
# Appearance settings
theme = 'auto'
colorPalette = 'default'
hideHeader = false
# Intro on main page, content is markdown
homeIntroTitle = 'Hi!'
homeIntroContent = """
I am an Indonesian Software Engineer with a strong foundation in computer science
and a passion for designing efficient, scalable systems. My expertise spans areas
such as algorithms, distributed systems, databases, artificial intelligence,
and I enjoy diving deep into emerging technologies to solve complex problems.
"""
# Collection to display on home
homeCollectionTitle = 'Posts'
homeCollection = 'posts'
# Lists parameters
paginationSize = 100
listSummaries = true
listDateFormat = '2 Jan 2006'
# Breadcrumbs
breadcrumbs = true
# Social icons
[[params.social]]
name = "linkedin"
url = "https://www.linkedin.com/in/rubiagatra"
[[params.social]]
name = "medium"
url = "https://medium.com/@rubiagatra"
[[params.social]]
name = "github"
url = "https://github.com/rubiagatra"
# Main menu pages
[[params.menu]]
name = "home"
url = "/"
[[params.menu]]
name = "posts"
url = "/posts"
[[params.menu]]
name = "about"
url = "/about"
# Syntax highlight on code blocks
[markup]
[markup.highlight]
style = 'algol'