cyberpink/layouts/_default/list.html
2023-08-10 04:00:46 +02:00

26 lines
547 B
HTML

{{ define "main" }}
{{ if .Content }}
<article>
{{ .Content -}}
</article>
{{ else }}
<h1>{{ .Title }}</h1>
{{ end }}
<div class="posts">
<table>
<tr>
<th>Title</th>
<th>Tags</th>
<th>Description</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>
<td><p>{{ .Params.description }}</p></td>
</tr>
{{ end }}
</table>
</div>
{{ end }}