Compare commits
No commits in common. "f684465d00737439773e695bc097671b867b795e" and "c6abdaefabd2222f99d5cf5da5c7ad75833d0ed1" have entirely different histories.
f684465d00
...
c6abdaefab
|
@ -3,11 +3,10 @@ languageCode = "en-us"
|
|||
title = "Basic Hugo Theme"
|
||||
copyright = "Copyright © 2019, Copyright Owner Name | Built with [Hugo](https://gohugo.io/)"
|
||||
theme = "basic-theme"
|
||||
paginate = 5
|
||||
paginate = 10
|
||||
|
||||
[permalinks]
|
||||
posts = "/:year/:month/:title/"
|
||||
|
||||
[params]
|
||||
subtitle = "A theme with no CSS and only basic layouts"
|
||||
mainSections = [ "posts" ]
|
||||
|
|
|
@ -9,12 +9,7 @@
|
|||
<header class="list-content">
|
||||
{{ .Content }}
|
||||
</header>
|
||||
{{ range $index, $page := (.Paginate (where .Pages ".Params.hidden" "!=" "true")).Pages }}
|
||||
{{ if ne $index 0 }}
|
||||
{{ end }}
|
||||
{{ range .Pages }}
|
||||
{{ .Render "summary"}}
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
{{ define "content-footer" }}
|
||||
{{ partial "paginator.html" .Paginator }}
|
||||
{{ end }}
|
|
@ -10,6 +10,3 @@
|
|||
{{ .Content }}
|
||||
</article>
|
||||
{{ end }}
|
||||
{{ define "content-footer" }}
|
||||
{{ partial "prev-next-page.html" . }}
|
||||
{{ end }}
|
|
@ -4,12 +4,7 @@
|
|||
{{.Content}}
|
||||
</article>
|
||||
<!-- Note that .Pages is the same as .Site.RegularPages on the homepage template. -->
|
||||
{{ range $index, $page := (.Paginate (where (where .Site.RegularPages "Type" "in" site.Params.mainSections) ".Params.hidden" "!=" "true" )).Pages }}
|
||||
{{ if ne $index 0 }}
|
||||
{{ end }}
|
||||
{{ range first 10 .Pages }}
|
||||
{{ .Render "summary"}}
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
{{ define "content-footer" }}
|
||||
{{ partial "paginator.html" .Paginator }}
|
||||
{{ end }}
|
|
@ -1,19 +0,0 @@
|
|||
<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>
|
|
@ -1,20 +0,0 @@
|
|||
{{ 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