Lots of changes to the website

This commit is contained in:
Blake Ridgway
2026-03-27 07:57:13 -05:00
parent 617624c179
commit 7e7480ecf9
33 changed files with 1539 additions and 184 deletions

28
templates/changelog.html Normal file
View File

@@ -0,0 +1,28 @@
{{define "title"}}Changelog — Ridgway Systems{{end}}
{{define "meta-desc"}}Infrastructure changelog — a running log of hardware, network, software, and migration changes.{{end}}
{{define "content"}}
<div class="page-header">
<h1>Changelog</h1>
<p class="page-desc">A running log of infrastructure changes.</p>
</div>
{{if and .Log .Log.Entries}}
<div class="changelog-list">
{{range .Log.Entries}}
<div class="changelog-entry">
<div class="changelog-meta">
<time class="changelog-date">{{.Date}}</time>
<span class="changelog-category changelog-category-{{.Category}}">{{.Category}}</span>
</div>
<div class="changelog-body">
<h3 class="changelog-title">{{.Title}}</h3>
{{if .Description}}<p class="changelog-desc">{{.Description}}</p>{{end}}
</div>
</div>
{{end}}
</div>
{{else}}
<p class="empty-state">No changelog entries yet.</p>
{{end}}
{{end}}