Initial Commit

This commit is contained in:
2025-04-28 23:43:24 -07:00
commit 15e2ba1591
7 changed files with 78 additions and 0 deletions

38
.gitignore vendored Normal file
View File

@@ -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

3
.gitmodules vendored Normal file
View File

@@ -0,0 +1,3 @@
[submodule "themes/hugo-PaperMod"]
path = themes/hugo-PaperMod
url = https://github.com/adityatelange/hugo-PaperMod.git

5
archetypes/default.md Normal file
View File

@@ -0,0 +1,5 @@
+++
date = '{{ .Date }}'
draft = true
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
+++

View File

@@ -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.

11
content/posts/hi-there.md Normal file
View File

@@ -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.

9
hugo.toml Normal file
View File

@@ -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

1
themes/hugo-PaperMod Submodule

Submodule themes/hugo-PaperMod added at 7cf752f864