Add Bootstrap-compatible pagination.html - hugo - [fork] hugo port for 9front
HTML git clone git@git.drkhsh.at/hugo.git
DIR Log
DIR Files
DIR Refs
DIR Submodules
DIR README
DIR LICENSE
---
DIR commit c0fbe614843db9640b0ae2ee8dc7117c886cb6ed
DIR parent 3628d0bbc608cca94cb239a88b7920c4c1b0e3a1
HTML Author: bep <bjorn.erik.pedersen@gmail.com>
Date: Mon, 26 Jan 2015 13:34:12 +0100
Add Bootstrap-compatible pagination.html
See #750
Diffstat:
M tpl/template_embedded.go | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+), 0 deletions(-)
---
DIR diff --git a/tpl/template_embedded.go b/tpl/template_embedded.go
@@ -81,6 +81,34 @@ func (t *GoHtmlTemplate) EmbedTemplates() {
{{ 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 }}';