implement pagination
This commit is contained in:
@@ -7,12 +7,14 @@
|
|||||||
{{ .Content }}
|
{{ .Content }}
|
||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
{{ range (where .Data.Pages "Section" "!=" "") }}
|
{{ $paginator := .Paginate (where .Data.Pages "Section" "!=" "") }}
|
||||||
|
{{ range $paginator.Pages }}
|
||||||
<li>
|
<li>
|
||||||
<span class="date">{{ .Date.Format "2006/01/02" }}</span>
|
<span class="date">{{ .Date.Format "2006/01/02" }}</span>
|
||||||
<a href="{{ .URL }}">{{ .Title }}</a>
|
<a href="{{ .URL }}">{{ .Title }}</a>
|
||||||
</li>
|
</li>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</ul>
|
</ul>
|
||||||
|
{{ template "_internal/pagination.html" . }}
|
||||||
|
|
||||||
{{ partial "footer.html" . }}
|
{{ partial "footer.html" . }}
|
||||||
|
|||||||
@@ -22,6 +22,11 @@ hr {
|
|||||||
color: #ddd;
|
color: #ddd;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* pagination */
|
||||||
|
.pagination { text-align: center; }
|
||||||
|
.pagination li { display: inline; }
|
||||||
|
.pagination a { padding: 0 .2em; }
|
||||||
|
|
||||||
/* code */
|
/* code */
|
||||||
pre {
|
pre {
|
||||||
border: 1px solid #ddd;
|
border: 1px solid #ddd;
|
||||||
|
|||||||
Reference in New Issue
Block a user