aboutsummaryrefslogtreecommitdiff
path: root/config.toml
diff options
context:
space:
mode:
authorAnthony Wang2021-10-13 20:45:22 -0500
committerAnthony Wang2021-10-13 20:45:22 -0500
commite41b799fda23e579f75645c52ff553f02b257a06 (patch)
tree2c0a4f4a3dddcf9d3475c0b5996dcc4fe25da659 /config.toml
parent73cbda64944d40b474130a740f3a6718e444d6ea (diff)
Start configuring Hugo site
Diffstat (limited to 'config.toml')
-rw-r--r--config.toml31
1 files changed, 31 insertions, 0 deletions
diff --git a/config.toml b/config.toml
index 816a120..a9032de 100644
--- a/config.toml
+++ b/config.toml
@@ -3,7 +3,38 @@ languageCode = 'en-us'
title = 'Some Random Website'
theme = 'gokarna'
+[menu]
+ [[menu.main]]
+ identifier = 'blog'
+ name = 'Blog'
+ url = '/blog/'
+ weight = 1
+ [[menu.main]]
+ identifier = 'projects'
+ name = 'Projects'
+ url = '/projects/'
+ weight = 2
+ [[menu.main]]
+ identifier = 'tags'
+ name = 'Tags'
+ url = '/tags/'
+ weight = 3
+ [[menu.main]]
+ identifier = 'github'
+ url = 'https://github.com/Ta180m/ta180m.github.io'
+ pre = '<span data-feather="github"></span>'
+ weight = 4
+
[params]
avatarURL = '/fun/dodecahedra/render-cropped.png'
description = 'Hello!'
accentColor = '#00dd42'
+ #footer = 'Made with ❤️ by Ta180m'
+ socialIcons = [
+ {name = 'protonmail', url = 'mailto:ta180m@pm.me'},
+ {name = 'matrix', url = 'https://matrix.to/#/@ta180m:exozy.me'},
+ {name = 'mastodon', usrl = 'https://social.exozy.me/@ta180m'},
+ {name = 'gitea', url = 'https://git.exozy.me/Ta180m/'},
+ {name = 'github', url = 'https://github.com/Ta180m/'},
+ {name = 'codeforces', url = 'https://codeforces.com/profile/Ta180m'},
+ ]