dashboard
repositories
filestore
activity
search
login
external-software
/
github_gohugo_theme_compose
mirror of
https://github.com/onweru/compose.git
summary
commits
tree
docs
forks
compare
blame
|
history
|
raw
update issue template #94
weru
09.10.2023
4a48df0beda360fe3e3dbf17d8b7be1d0e9269a1
[external-software/github_gohugo_theme_compose.git]
/
layouts
/
_default
/
list.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{{- define "main" }}
{{- .Content }}
{{ if eq .Kind "taxonomy" }}
<ol>
{{ range .Data.Pages }}
<li>
<a href="{{ .Permalink }}">
{{ .Title }}
</a>
</li>
{{ end }}
</ol>
{{ end }}
{{- end }}