mirror of
https://github.com/morgan9e/blog
synced 2026-04-13 15:54:06 +09:00
9 lines
280 B
HTML
9 lines
280 B
HTML
{{ $parent := .Parent }}
|
|
<nav class="site-nav">
|
|
{{ if and $parent (not $parent.IsHome) }}
|
|
<a href="{{ $parent.RelPermalink }}">← {{ with $parent.Title }}{{ . }}{{ else }}{{ $parent.Section }}{{ end }}</a>
|
|
{{ else }}
|
|
<a href="/">← home</a>
|
|
{{ end }}
|
|
</nav>
|