initial commit - added base, need to fix templ errors

This commit is contained in:
2025-08-17 10:58:31 +00:00
commit 59d82ae563
20 changed files with 1512 additions and 0 deletions

32
posts/hello.md Normal file
View File

@@ -0,0 +1,32 @@
---
title: "Hello, Forge"
date: "2025-08-17"
excerpt: "The Hammer Strikes..."
draft: false
---
# Hello, Forge
Welcome.
This is my home.
A place to show you all the things, write some code, and explore new features of Go and other languages I enjoy writing.
```go
type Valentine struct {
Age int
Hobbies []string
Job string
}
func main() {
valentine := Valentine{
Age: 32,
Hobbies: []string{"Lifting heavy things", "Walking Dwight", "Writing Go"},
Job: "Senior Software Engineer",
}
fmt.Sprintf("%+v\n", valentine)
}
```