Compare commits

...

2 Commits

Author SHA1 Message Date
0957f4772c Init 2025-04-21 16:39:04 -06:00
7cdf8ac7ab Init 2025-04-21 16:38:59 -06:00
4 changed files with 13 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
public/
.hugo_build.lock

3
.gitmodules vendored Normal file
View File

@ -0,0 +1,3 @@
[submodule "themes/sr"]
path = themes/sr
url = https://gitmoss.fyi/hugo_serialReader/hugo_serialReader.git

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'