summaryrefslogtreecommitdiff
path: root/config.toml
diff options
context:
space:
mode:
authorRobby Zambito <contact@robbyzambito.me>2020-10-30 09:36:31 -0400
committerRobby Zambito <contact@robbyzambito.me>2020-10-30 09:36:31 -0400
commit25fd81cc7f67cf125bd6bacad9966e8580d49b0a (patch)
treedf7ff28a89ffba45bbea9727813811cb275e13b2 /config.toml
Initial commit
Diffstat (limited to 'config.toml')
-rw-r--r--config.toml56
1 files changed, 56 insertions, 0 deletions
diff --git a/config.toml b/config.toml
new file mode 100644
index 0000000..6574f09
--- /dev/null
+++ b/config.toml
@@ -0,0 +1,56 @@
+baseURL = "https://robbyzambito.me/"
+languageCode = "en-us"
+title = "Robby Zambito"
+theme = "hugo-ink"
+paginate = 5
+
+copyright = "© Copyright notice"
+
+pygmentsstyle = "vs"
+pygmentscodefences = true
+pygmentscodefencesguesssyntax = true
+
+[params]
+ subtitle = "Software Engineer"
+ avatar = "https://git.robbyzambito.me/avatars/1e72c5a6ad87cf7eb40306944cb9ed63"
+
+ featherIconsCDN = true
+
+ mode = "auto"
+ # customCSS = "css/custom.css" # Custom CSS applied to default styles.
+ # customDarkCSS = "css/custom-dark.css" # Custom styles applied to dark mode css.
+ # customJS = ["js/custom.js", "js/custom1.js"] # Custom JS scripts.
+
+# Nav.
+[[menu.main]]
+name = "Home"
+url = "/"
+weight = 1
+
+[[menu.main]]
+name = "All posts"
+url = "/posts"
+weight = 2
+
+[[menu.main]]
+name = "About"
+url = "/about"
+weight = 3
+
+[[menu.main]]
+name = "Tags"
+url = "/tags"
+weight = 4
+
+[[params.social]]
+name = "Gitea"
+icon = "code"
+url = "https://git.robbyzambito.me/Zambyte"
+
+[[params.social]]
+name = "RSS"
+icon = "rss"
+url = "/index.xml"
+
+[taxonomies]
+ tag = "tags"