commit cdb1a72959be496be167dfb1f2620eed52edd654 Author: richardoswald Date: Tue Jun 3 23:30:27 2025 -0500 Initial Richard blog commit. 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