29 lines
912 B
HTML
29 lines
912 B
HTML
{{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}}
|