summaryrefslogtreecommitdiff
path: root/hugo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'hugo.toml')
-rw-r--r--hugo.toml62
1 files changed, 62 insertions, 0 deletions
diff --git a/hugo.toml b/hugo.toml
new file mode 100644
index 0000000..07e0c3d
--- /dev/null
+++ b/hugo.toml
@@ -0,0 +1,62 @@
+title = 'tdback.net'
+baseURL = 'https://tdback.net'
+theme = 'hugo-blog-awesome'
+languageCode = 'en-us'
+defaultContentLanguage = 'en-us'
+
+[params]
+ sitename = 'tdbacks blog'
+ defaultColor = 'auto'
+ toc = false
+ tocOpen = false
+ goToTop = true
+ dateFormat = '2006-01-02'
+ mainSections = ['posts']
+ rssFeedDescription = 'full'
+ [params.author]
+ avatar = 'images/calvin_and_hobbes.jpg'
+ intro = 'Tyler Dunneback'
+ description = '*nix hobbyist and avid self-hoster'
+ name = 'Tyler Dunneback'
+ [params.webmanifest]
+ name = 'tdback.net'
+ display = 'standalone'
+ [[params.socialIcons]]
+ name = 'gitea'
+ url = 'https://codeberg.org/tdback'
+ [[params.socialIcons]]
+ name = 'mastodon'
+ url = 'https://social.tdback.net/@tdback'
+ [[params.socialIcons]]
+ name = 'rss'
+ url = '/index.xml'
+
+[menus]
+ [[menus.main]]
+ pageRef = '/'
+ name = 'Home'
+ url = '/'
+ weight = 10
+ [[menus.main]]
+ pageRef = 'posts'
+ name = 'Posts'
+ url = '/posts/'
+ weight = 20
+ [[menus.main]]
+ pageRef = 'about'
+ name = 'About'
+ url = '/about/'
+ weight = 30
+ [[menus.main]]
+ pageRef = 'rss'
+ name = 'RSS'
+ url = '/index.xml'
+ weight = 40
+
+[markup]
+ [markup.highlight]
+ noClasses = false
+ codeFences = true
+ guessSyntax = true
+ [markup.goldmark.renderer]
+ unsafe = true