Lots of changes to the website
This commit is contained in:
28
templates/changelog.html
Normal file
28
templates/changelog.html
Normal 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}}
|
||||
Reference in New Issue
Block a user