<nav class="page-nav">
<h3 style="margin-bottom: 1rem;">Other pages</h3>
<ul style="list-style: none; margin: 0;">
- {{ range .Site.Sections.By }}
- {{ if eq .Type "is" }}
- {{ range .Pages }}
- <li style="margin-bottom: 0.5rem;">
- <a href="{{ .RelPermalink }}" {{ if eq $.RelPermalink .RelPermalink }}class="active"{{ end }}>
- {{ .Title }}
- </a>
- </li>
- {{ end }}
+ {{ $section := .Site.GetPage "/is" }}
+ {{ if $section }}
+ {{ range $section.Pages }}
+ <li style="margin-bottom: 0.5rem;">
+ <a href="{{ .RelPermalink }}" {{ if eq $.RelPermalink .RelPermalink }}class="active"{{ end }}>
+ {{ .Title }}
+ </a>
+ </li>
{{ end }}
{{ end }}
</ul>