mirror of
https://github.com/tomfran/typo.git
synced 2025-04-25 13:09:54 +03:00
23 lines
No EOL
513 B
HTML
23 lines
No EOL
513 B
HTML
{{ if gt .TotalPages 1 }}
|
|
<div class="pagination">
|
|
<div class="pagination-control">
|
|
{{ if .HasPrev }}
|
|
<a href="{{ .Prev.URL | absURL }}">
|
|
prev
|
|
</a>
|
|
{{ end }}
|
|
</div>
|
|
<div class="page-number">
|
|
<p>
|
|
{{ .PageNumber }}/{{ .TotalPages }}
|
|
</p>
|
|
</div>
|
|
<div class="pagination-control">
|
|
{{ if .HasNext }}
|
|
<a href="{{ .Next.URL | absURL }}">
|
|
next
|
|
</a>
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
{{ end }} |