Compare commits
2 Commits
c6abdaefab
...
f684465d00
Author | SHA1 | Date |
---|---|---|
Kevin C. Coram | f684465d00 | |
Kevin C. Coram | 3365dc074a |
|
@ -3,10 +3,11 @@ languageCode = "en-us"
|
|||
title = "Basic Hugo Theme"
|
||||
copyright = "Copyright © 2019, Copyright Owner Name | Built with [Hugo](https://gohugo.io/)"
|
||||
theme = "basic-theme"
|
||||
paginate = 10
|
||||
paginate = 5
|
||||
|
||||
[permalinks]
|
||||
posts = "/:year/:month/:title/"
|
||||
|
||||
[params]
|
||||
subtitle = "A theme with no CSS and only basic layouts"
|
||||
mainSections = [ "posts" ]
|
||||
|
|
|
@ -9,7 +9,12 @@
|
|||
<header class="list-content">
|
||||
{{ .Content }}
|
||||
</header>
|
||||
{{ range .Pages }}
|
||||
{{ range $index, $page := (.Paginate (where .Pages ".Params.hidden" "!=" "true")).Pages }}
|
||||
{{ if ne $index 0 }}
|
||||
{{ end }}
|
||||
{{ .Render "summary" }}
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
{{ define "content-footer" }}
|
||||
{{ partial "paginator.html" .Paginator }}
|
||||
{{ end }}
|
|
@ -10,3 +10,6 @@
|
|||
{{ .Content }}
|
||||
</article>
|
||||
{{ end }}
|
||||
{{ define "content-footer" }}
|
||||
{{ partial "prev-next-page.html" . }}
|
||||
{{ end }}
|
|
@ -4,7 +4,12 @@
|
|||
{{.Content}}
|
||||
</article>
|
||||
<!-- Note that .Pages is the same as .Site.RegularPages on the homepage template. -->
|
||||
{{ range first 10 .Pages }}
|
||||
{{ range $index, $page := (.Paginate (where (where .Site.RegularPages "Type" "in" site.Params.mainSections) ".Params.hidden" "!=" "true" )).Pages }}
|
||||
{{ if ne $index 0 }}
|
||||
{{ end }}
|
||||
{{ .Render "summary" }}
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
{{ define "content-footer" }}
|
||||
{{ partial "paginator.html" .Paginator }}
|
||||
{{ end }}
|
|
@ -0,0 +1,19 @@
|
|||
<nav>
|
||||
<ul>
|
||||
<li>
|
||||
{{if .HasPrev}}
|
||||
<a alt="Newer articles" href="{{ .Prev.URL }}">← Newer</a>
|
||||
{{ else }}
|
||||
|
||||
{{end}}
|
||||
</li>
|
||||
<li>Page {{ .PageNumber }} of {{ .TotalPages }}</li>
|
||||
<li>
|
||||
{{if .HasNext}}
|
||||
<a alt="Older articles" href="{{ .Next.URL }}">Older →</a>
|
||||
{{ else }}
|
||||
|
||||
{{end}}
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
|
@ -0,0 +1,20 @@
|
|||
{{ if not .Params.Menu }}
|
||||
<nav>
|
||||
<ul>
|
||||
<li>
|
||||
{{ if .NextInSection }}
|
||||
<a alt="Newer article" href="{{ .NextInSection.Permalink }}">← Newer</a>
|
||||
{{ else }}
|
||||
|
||||
{{ end }} </li>
|
||||
<li><a alt="Top of page" href="#">Top</a></li>
|
||||
<li>
|
||||
{{ if .PrevInSection }}
|
||||
<a alt="Older article" href="{{ .PrevInSection.Permalink }}">Older →</a>
|
||||
{{ else }}
|
||||
|
||||
{{ end }}
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
{{ end }}
|
Loading…
Reference in New Issue