Update to remove "Pages"
This commit is contained in:
parent
6c72d41c94
commit
ef661d427e
2 changed files with 6 additions and 2 deletions
|
@ -4,7 +4,9 @@
|
|||
<a href="/post/">Archive</a>
|
||||
{{ end }}
|
||||
{{ range where .Site.Pages "Section" "pages" }}
|
||||
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
|
||||
{{ if .IsPage }}
|
||||
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
<a href="#top">Top</a>
|
||||
</div>
|
||||
|
|
|
@ -57,6 +57,8 @@
|
|||
<a href="/post/">Archive</a>
|
||||
{{ end }}
|
||||
{{ range (where .Site.Pages "Section" "pages") }}
|
||||
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
|
||||
{{ if .IsPage }}
|
||||
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue