Add hugo config and default page

This commit is contained in:
Ethan Paul 2024-05-07 16:09:05 -04:00
parent caf3e63321
commit 686fe7581f
Signed by: enpaul
GPG Key ID: 7F99C4BD34F93E16
2 changed files with 10 additions and 0 deletions

6
archetypes/default.md Normal file
View File

@ -0,0 +1,6 @@
---
title: "{{ replace .Name "-" " " | title }}"
date: {{ .Date }}
draft: true
---

4
config.toml Normal file
View File

@ -0,0 +1,4 @@
baseURL = 'http://example.org/'
languageCode = 'en-us'
title = 'My New Hugo Site'
theme = 'stack'