cyberpink/layouts/_default/list.html

22 lines
453 B
HTML
Raw Normal View History

2023-08-10 03:39:50 +02:00
{{ define "main" }}
{{ if .Content }}
<article>
{{ .Content -}}
</article>
{{ else }}
<h1>{{ .Title }}</h1>
{{ end }}
2023-08-10 04:20:23 +02:00
<table class="posts">
<tr>
<th>Title</th>
<th>Tags</th>
</tr>
{{ range .Paginator.Pages }}
<tr>
<td><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a></td>
<td>{{ range .Params.tags }}<a href="{{ (urlize (printf "tags/%s/" .)) | absLangURL }}">#{{ . }}</a>&nbsp; {{ end }}</td>
</tr>
{{ end }}
</table>
2023-08-10 03:39:50 +02:00
{{ end }}