update theme to support features

This commit is contained in:
Gabriel 2024-02-04 01:43:07 -05:00
parent 1a8ce154b6
commit 7535ee4f32
3 changed files with 12 additions and 2 deletions

View file

@ -5,9 +5,14 @@
<body>
{{partial "header" .}}
<main>
<article>
{{ if .Content}}
<article>{{.Content}}</article>
{{.Content}}
{{end}}
{{if .GetTerms "issues"}}
{{ partial "issues" .}}
{{end}}
</article>
</main>
{{partial "footer" .}}
</body>

View file

@ -0,0 +1,5 @@
<h2>Raised Issues</h2>
{{range .GetTerms "issues"}}
<h3><a href="{{.RelPermalink}}">{{.Title}}</a></h3>
{{.Content}}
{{end}}

@ -1 +1 @@
Subproject commit 07e4d56f7e42205c761deac89fcb7a0cb41e9371
Subproject commit 30eecfe770b684be6527bf1f3cf3827c0f396e07