Add Hugo static site with homepage, resume, and blog sections
This commit is contained in:
27
hugo.toml
Normal file
27
hugo.toml
Normal 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
|
||||
Reference in New Issue
Block a user