From cdb1a72959be496be167dfb1f2620eed52edd654 Mon Sep 17 00:00:00 2001 From: richardoswald Date: Tue, 3 Jun 2025 23:30:27 -0500 Subject: [PATCH] Initial Richard blog commit. --- .gitignore | 13 +++++++++++++ .gitmodules | 3 +++ archetypes/default.md | 5 +++++ content/posts/my-first-post.md | 11 +++++++++++ content/posts/my-second-post.md | 11 +++++++++++ content/posts/my-third-post.md | 11 +++++++++++ hugo.toml | 4 ++++ themes/PaperMod | 1 + 8 files changed, 59 insertions(+) create mode 100644 .gitignore create mode 100644 .gitmodules create mode 100644 archetypes/default.md create mode 100644 content/posts/my-first-post.md create mode 100644 content/posts/my-second-post.md create mode 100644 content/posts/my-third-post.md create mode 100644 hugo.toml create mode 160000 themes/PaperMod diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..86c95ef --- /dev/null +++ b/.gitignore @@ -0,0 +1,13 @@ +# Generated files by hugo +/public/ +/resources/_gen/ +/assets/jsconfig.json +hugo_stats.json + +# Executable may be added to repository +hugo.exe +hugo.darwin +hugo.linux + +# Temporary lock file while building +/.hugo_build.lock 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/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..25b6752 --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,5 @@ ++++ +date = '{{ .Date }}' +draft = true +title = '{{ replace .File.ContentBaseName "-" " " | title }}' ++++ diff --git a/content/posts/my-first-post.md b/content/posts/my-first-post.md new file mode 100644 index 0000000..f7884ba --- /dev/null +++ b/content/posts/my-first-post.md @@ -0,0 +1,11 @@ ++++ +date = '2025-05-18T15:04:56-05:00' +draft = false +title = 'Hello World!' ++++ + +## Introduction + +This is **bold** text, and this is *emphasized* text. + +Visit the [Hugo](https://gohugo.io) website! \ No newline at end of file diff --git a/content/posts/my-second-post.md b/content/posts/my-second-post.md new file mode 100644 index 0000000..25fb23e --- /dev/null +++ b/content/posts/my-second-post.md @@ -0,0 +1,11 @@ ++++ +date = '2025-05-18T15:04:56-05:00' +draft = false +title = 'Hello World 2!' ++++ + +## Introduction + +This is **bold** text, and this is *emphasized* text. + +Visit the [Hugo](https://gohugo.io) website! \ No newline at end of file diff --git a/content/posts/my-third-post.md b/content/posts/my-third-post.md new file mode 100644 index 0000000..1d8c808 --- /dev/null +++ b/content/posts/my-third-post.md @@ -0,0 +1,11 @@ ++++ +date = '2025-05-18T15:04:56-05:00' +draft = false +title = 'Hello World 3!' ++++ + +## Introduction + +This is **bold** text, and this is *emphasized* text. + +Visit the [Hugo](https://gohugo.io) website! \ No newline at end of file diff --git a/hugo.toml b/hugo.toml new file mode 100644 index 0000000..2ea534d --- /dev/null +++ b/hugo.toml @@ -0,0 +1,4 @@ +baseURL = 'https://blog.theoswalds.com/' +languageCode = 'en-us' +title = 'Richard Blog' +theme = 'PaperMod' \ No newline at end of file diff --git a/themes/PaperMod b/themes/PaperMod new file mode 160000 index 0000000..ee1e0f3 --- /dev/null +++ b/themes/PaperMod @@ -0,0 +1 @@ +Subproject commit ee1e0f3aa3c3575a756c9b17be5823e21de09c30