ref: c0fbe614843db9640b0ae2ee8dc7117c886cb6ed
parent: 3628d0bbc608cca94cb239a88b7920c4c1b0e3a1
author: bep <[email protected]>
date: Mon Jan 26 08:34:12 EST 2015
Add Bootstrap-compatible pagination.html See #750
--- a/tpl/template_embedded.go
+++ b/tpl/template_embedded.go
@@ -81,6 +81,34 @@
{{ end }}
</urlset>`)
+ t.AddInternalTemplate("", "pagination.html", `{{ $pag := .Paginator }}
+ {{ if gt $pag.TotalPages 1 }}
+ <ul class="pagination">
+ {{ with $pag.First }}
+ <li>
+ <a href="{{ .Url }}" aria-label="First"><span aria-hidden="true">««</span></a>
+ </li>
+ {{ end }}
+ <li
+ {{ if not $pag.HasPrev }}class="disabled"{{ end }}>
+ <a href="{{ if $pag.HasPrev }}{{ $pag.Prev.Url }}{{ end }}" aria-label="Previous"><span aria-hidden="true">«</span></a>
+ </li>
+ {{ range $pag.Pagers }}
+ <li
+ {{ if eq . $pag }}class="active"{{ end }}><a href="{{ .Url }}">{{ .PageNumber }}</a></li>
+ {{ end }}
+ <li
+ {{ if not $pag.HasNext }}class="disabled"{{ end }}>
+ <a href="{{ if $pag.HasNext }}{{ $pag.Next.Url }}{{ end }}" aria-label="Next"><span aria-hidden="true">»</span></a>
+ </li>
+ {{ with $pag.Last }}
+ <li>
+ <a href="{{ .Url }}" aria-label="Last"><span aria-hidden="true">»»</span></a>
+ </li>
+ {{ end }}
+ </ul>
+ {{ end }}`)
+
t.AddInternalTemplate("", "disqus.html", `{{ if .Site.DisqusShortname }}<div id="disqus_thread"></div>
<script type="text/javascript">
var disqus_shortname = '{{ .Site.DisqusShortname }}';