Ginnie blog: no tags

This commit is contained in:
Neale Pickett 2023-12-24 12:51:37 -07:00
parent 1eccdaf317
commit 7c0699b583
3 changed files with 18 additions and 1 deletions

View File

@ -1 +0,0 @@
blog

15
layouts/ginnie/list.html Normal file
View File

@ -0,0 +1,15 @@
{{define "main"}}
{{.Content}}
<ul>
{{range .Pages}}
<li class="{{if .IsNode}}branch{{end}} {{if .Draft}}draft{{end}}">
<a href="{{.Permalink}}">
{{time.Format "2006-Jan-02" .Date}}: {{.Title}}
</a>
{{with .Description}}
- {{.}}
{{end}}
</li>
{{end}}
</ul>
{{end}}

View File

@ -0,0 +1,3 @@
{{define "main"}}
{{.Content}}
{{end}}