2022-05-24 23:33:16 +00:00
|
|
|
{{ $name := "post" -}}
|
|
|
|
{{- if eq .Page.Section "notes" -}}
|
|
|
|
{{- $name = "note" -}}
|
|
|
|
{{- end -}}
|
2022-06-06 04:17:18 +00:00
|
|
|
<hr />
|
2022-05-19 00:21:48 +00:00
|
|
|
<aside aria-labelledby="continue-hd">
|
|
|
|
<nav aria-labelledby="continue-hd">
|
|
|
|
<h2 id="continue-hd">Continue reading</h2>
|
|
|
|
<ul>
|
|
|
|
{{- with .PrevInSection }}
|
2022-05-27 01:03:28 +00:00
|
|
|
<li>Previous {{ $name }}: <a href="{{ .Permalink }}" rel="prev">{{ .Title }}</a></li>
|
2022-05-19 00:21:48 +00:00
|
|
|
{{- end -}}
|
|
|
|
{{- with .NextInSection }}
|
2022-05-24 23:33:16 +00:00
|
|
|
<li>Next {{ $name }}: <a href="{{ .Permalink }}" rel="next">{{ .Title }}</a></li>
|
2022-05-19 00:21:48 +00:00
|
|
|
{{- end }}
|
|
|
|
</ul>
|
|
|
|
</nav>
|
2022-10-24 19:48:14 +00:00
|
|
|
<p>For more information, please re-read.</p>
|
2022-05-19 00:21:48 +00:00
|
|
|
</aside>
|