commit 15e2ba15919d4bae2881ec98b12368e5ba8a740e Author: Madison Date: Mon Apr 28 23:43:24 2025 -0700 Initial Commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7701f46 --- /dev/null +++ b/.gitignore @@ -0,0 +1,38 @@ +# Created by https://www.toptal.com/developers/gitignore/api/hugo,visualstudiocode +# Edit at https://www.toptal.com/developers/gitignore?templates=hugo,visualstudiocode + +### Hugo ### +# 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 + +### VisualStudioCode ### +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +!.vscode/*.code-snippets + +# Local History for Visual Studio Code +.history/ + +# Built Visual Studio Code Extensions +*.vsix + +### VisualStudioCode Patch ### +# Ignore all local history of files +.history +.ionide + +# End of https://www.toptal.com/developers/gitignore/api/hugo,visualstudiocode diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..a100308 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "themes/hugo-PaperMod"] + path = themes/hugo-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/building-a-blog.md b/content/posts/building-a-blog.md new file mode 100644 index 0000000..f6a64e4 --- /dev/null +++ b/content/posts/building-a-blog.md @@ -0,0 +1,11 @@ ++++ +date = '2025-04-28T00:34:11-07:00' +draft = true +title = 'Building a Blog' ++++ + +## Building a blog (site) + +Look. I'm an infrastructure puppy, okay? I code some things, mostly for personal pleasure, but at $dayjob the most programming I manage to do on a normal basis is some Powershell scripting. So don't expect this to be like "omg I wrote my own static site generator!". I've considered that, and have promptly decided - fuck that. + +Anyways. Hi! Uh. So I have this blog thing now, and surprisingly it's actually a lot more complicated than it needs to be! I'm definitely using this as an excuse to make some distributed system. Again. I already did this once, lmao. \ No newline at end of file diff --git a/content/posts/hi-there.md b/content/posts/hi-there.md new file mode 100644 index 0000000..bbe0259 --- /dev/null +++ b/content/posts/hi-there.md @@ -0,0 +1,11 @@ ++++ +date = '2025-04-28T00:14:47-07:00' +draft = true +title = 'Hi There' ++++ + +## Well then. Uh, hi. + +I don't know. I kind of felt like getting into blogging. I like sharing my ideas, my rambles, my thoughts. + +My... inner husky. Bark. \ No newline at end of file diff --git a/hugo.toml b/hugo.toml new file mode 100644 index 0000000..3ada40e --- /dev/null +++ b/hugo.toml @@ -0,0 +1,9 @@ +baseURL = 'https://example.org/' +languageCode = 'en-us' +title = "Don't give huskies technology." +theme = 'hugo-PaperMod' +author = 'Madison' +ShowReadingTime = true + +[params.footer] +hideCopyright = true diff --git a/themes/hugo-PaperMod b/themes/hugo-PaperMod new file mode 160000 index 0000000..7cf752f --- /dev/null +++ b/themes/hugo-PaperMod @@ -0,0 +1 @@ +Subproject commit 7cf752f8644fea1fc3dc7299352718d492c55182