Initial commit

This commit is contained in:
mivinci 2021-07-18 16:34:01 +08:00
commit 063f2bb49a
34 changed files with 1341 additions and 0 deletions

View file

@ -0,0 +1,10 @@
{{ $page := $.Paginator }}
{{ if gt $page.TotalPages 1 }}
<div class="mt-2">
{{ if $page.HasNext }}
<a href="{{ $page.Next.URL }}">Older →</a>
{{ else }}
<a href="{{ $page.Prev.URL }}">← Newer</a>
{{ end }}
</div>
{{ end }}