From 25fd81cc7f67cf125bd6bacad9966e8580d49b0a Mon Sep 17 00:00:00 2001 From: Robby Zambito Date: Fri, 30 Oct 2020 09:36:31 -0400 Subject: Initial commit --- config.toml | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 config.toml (limited to 'config.toml') 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" -- cgit