From cc119f1d598081270bb2b1a3ae49875da6db75f0 Mon Sep 17 00:00:00 2001 From: Paul Montag Date: Wed, 24 Jan 2024 21:09:33 -0600 Subject: [PATCH] Added the initial blog --- .gitmodules | 3 +++ .hugo_build.lock | 0 archetypes/default.md | 5 +++++ content/_index.md | 16 ++++++++++++++++ hugo.toml | 5 +++++ themes/PaperMod | 1 + 6 files changed, 30 insertions(+) create mode 100644 .gitmodules create mode 100644 .hugo_build.lock create mode 100644 archetypes/default.md create mode 100644 content/_index.md create mode 100644 hugo.toml create mode 160000 themes/PaperMod 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