initial commit

This commit is contained in:
Dane Sabo 2025-03-16 20:32:06 -04:00
parent b4d93caed3
commit d479a41527
3 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,5 @@
This is the directory that my website lives in.
There are two big directories:
1. Public - this is where all the public facing files live.
2. Private - This is for stuff that is is development.

5
archetypes/default.md Normal file
View File

@ -0,0 +1,5 @@
+++
date = '{{ .Date }}'
draft = true
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
+++

3
hugo.toml Normal file
View File

@ -0,0 +1,3 @@
baseURL = 'https://example.org/'
languageCode = 'en-us'
title = 'My New Hugo Site'