Add Hugo static site with homepage, resume, and blog sections

This commit is contained in:
2026-02-12 13:49:00 -05:00
parent 6f2b9a076f
commit 24b129cfe2
50 changed files with 1566 additions and 2 deletions

27
hugo.toml Normal file
View File

@@ -0,0 +1,27 @@
baseURL = 'https://dustin.coffee/'
languageCode = 'en-us'
title = 'd@n tech'
theme = 'personal'
[params]
description = "Personal website of Dustin"
author = "dustin"
[taxonomies]
tag = "tags"
category = "categories"
[[menu.main]]
name = "home"
pageRef = "/"
weight = 10
[[menu.main]]
name = "resume"
pageRef = "/resume"
weight = 20
[[menu.main]]
name = "blog"
pageRef = "/posts"
weight = 30