-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhugo.toml
More file actions
64 lines (53 loc) · 1.2 KB
/
hugo.toml
File metadata and controls
64 lines (53 loc) · 1.2 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
baseURL = "https://alex-anast.com/"
languageCode = "en-us"
title = "Alexandros Anastasiou"
theme = "hugo-noir"
paginate = 10
# URL handling
relativeURLs = true
canonifyURLs = true
# Language configuration
defaultContentLanguage = "en"
[languages]
[languages.en]
languageName = "English"
title = "Alexandros Anastasiou"
weight = 1
[params]
# Basic site info (kept here as fallback, but data/en/author.toml is primary source)
name = "Alexandros Anastasiou"
location = "London, UK"
description = "AI & Software Engineer"
github = "https://github.com/alex-anast"
email = "anastasioyaa@gmail.com"
linkedin = "https://linkedin.com/in/anastasioyaa"
# Main nav (the theme also supports pageRef-based menus)
[menu]
[[menu.main]]
name = "About"
pageRef = "/about"
weight = 1
[[menu.main]]
name = "Experience"
pageRef = "/experience"
weight = 2
[[menu.main]]
name = "Projects"
pageRef = "/projects"
weight = 3
[[menu.main]]
name = "Blog"
pageRef = "/blog"
weight = 4
[[menu.main]]
name = "Certifications"
pageRef = "/certifications"
weight = 5
[[menu.main]]
name = "CV"
pageRef = "/cv"
weight = 6
[[menu.main]]
name = "Contact"
pageRef = "/contact"
weight = 7