12 lines
435 B
HTML
12 lines
435 B
HTML
|
{{ define "pagination" }}
|
||
|
{{ if .PrevPage -}}
|
||
|
<a class="item" href="?after={{ .PrevPage }}{{ if .Params.Flags.Unvoted }}&unvoted=1{{ end }}" title="newer motions">
|
||
|
<i class="left arrow icon"></i> newer
|
||
|
</a>
|
||
|
{{- end }}
|
||
|
{{ if .NextPage -}}
|
||
|
<a class="right item" href="?before={{ .NextPage }}{{ if .Params.Flags.Unvoted }}&unvoted=1{{ end }}" title="older motions">
|
||
|
<i class="right arrow icon"></i> older
|
||
|
</a>
|
||
|
{{- end }}
|
||
|
{{ end }}
|