Setup HUGO
Some checks failed
Push changes to production / deploy (push) Failing after 5s

This commit is contained in:
2025-12-18 17:42:49 -06:00
parent 4c70553efa
commit d021597938
7 changed files with 33 additions and 0 deletions

4
.gitignore vendored Normal file
View File

@@ -0,0 +1,4 @@
public/
resources/
.hugo_build.lock

6
.gitmodules vendored Normal file
View File

@@ -0,0 +1,6 @@
[submodule "themes/papermod"]
path = themes/papermod
url = https://github.com/adityatelange/hugo-PaperMod.git
[submodule "themes/PaperMod"]
path = themes/PaperMod
url = https://github.com/adityatelange/hugo-PaperMod.git

5
archetypes/default.md Normal file
View File

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

9
content/posts/welcome.md Normal file
View File

@@ -0,0 +1,9 @@
+++
date = '2025-12-18T17:30:08-06:00'
draft = true
title = 'Welcome'
+++
## Welcome to Shadeouts
shadeouts.net

4
hugo.toml Normal file
View File

@@ -0,0 +1,4 @@
baseURL = "https://shadeouts.net/"
languageCode = "en-us"
title = "Shadeouts"
theme = "PaperMod"

4
static/robots.txt Normal file
View File

@@ -0,0 +1,4 @@
User-agent: *
Disallow:
Sitemap: https://shadeouts.net/sitemap.xml

1
themes/PaperMod Submodule

Submodule themes/PaperMod added at 1cf53273c3