mirror of
https://git.sr.ht/~seirdy/seirdy.one
synced 2024-11-10 00:12:09 +00:00
38c0d38fa4
Add an RSS feed for notes. Next up, replacing the RSS navlink with a page containing links to both my posts and notes RSS feeds. When I get ATOM and WebSub, it'll have links ot those too. Also fixed some typos and switched "Posted" to "Noted" in the context of notes.
18 lines
554 B
HTML
18 lines
554 B
HTML
{{ $name := "post" -}}
|
|
{{- if eq .Page.Section "notes" -}}
|
|
{{- $name = "note" -}}
|
|
{{- end -}}
|
|
<aside aria-labelledby="continue-hd">
|
|
<nav aria-labelledby="continue-hd">
|
|
<h2 id="continue-hd">Continue reading</h2>
|
|
<ul>
|
|
{{- with .PrevInSection }}
|
|
<li>Previous {{ $name }}: <a href="{{ .Permalink }}" rel="prev">{{ .Title }}</a></li>
|
|
{{- end -}}
|
|
{{- with .NextInSection }}
|
|
<li>Next {{ $name }}: <a href="{{ .Permalink }}" rel="next">{{ .Title }}</a></li>
|
|
{{- end }}
|
|
</ul>
|
|
</nav>
|
|
<p role="separator">That's all, folks.</p>
|
|
</aside>
|