commit cc119f1d598081270bb2b1a3ae49875da6db75f0 Author: Paul Montag Date: Wed Jan 24 21:09:33 2024 -0600 Added the initial blog diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..89af1b0 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "themes/PaperMod"] + path = themes/PaperMod + url = https://github.com/adityatelange/hugo-PaperMod.git diff --git a/.hugo_build.lock b/.hugo_build.lock new file mode 100644 index 0000000..e69de29 diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..c6f3fce --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,5 @@ ++++ +title = '{{ replace .File.ContentBaseName "-" " " | title }}' +date = {{ .Date }} +draft = true ++++ diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..d036ad9 --- /dev/null +++ b/content/_index.md @@ -0,0 +1,16 @@ +--- +--- + +# Hey! + +Look at that + +```go +package main + +import "fmt" + +func main() { + fmt.Println("Look at me, I am a program") +} +``` diff --git a/hugo.toml b/hugo.toml new file mode 100644 index 0000000..4196c60 --- /dev/null +++ b/hugo.toml @@ -0,0 +1,5 @@ +baseURL = 'https://pages.github.com/d1ngd0/blog/' +languageCode = 'en-us' +title = 'Paul Montag Blog' + +theme = [ 'PaperMod' ] diff --git a/themes/PaperMod b/themes/PaperMod new file mode 160000 index 0000000..d6cd6d9 --- /dev/null +++ b/themes/PaperMod @@ -0,0 +1 @@ +Subproject commit d6cd6d91757c6966a6573c21c0311ba5d957263f