mirror of
https://github.com/by-jp/www.byjp.me.git
synced 2025-08-21 08:43:13 +01:00
12 lines
452 B
HTML
12 lines
452 B
HTML
{{ if gt (len .OutputFormats) 1 }}
|
|
{{ $page := .}}
|
|
<nav>
|
|
<ul class="feedlinks">
|
|
{{ range $page.OutputFormats }}
|
|
{{ if ne .Rel "alternate" }}{{ continue }}{{ end }}
|
|
{{ $link := ($page.OutputFormats.Get .Name).Permalink }}
|
|
<li><a href="{{ $link | safeURL }}" title="{{ partial "alternatename.txt" .Name }}">{{ partial "svg.html" (dict "name" .Name) }} {{ partial "alternatename.txt" .Name }}</a></li>
|
|
{{ end }}
|
|
</ul>
|
|
</nav>
|
|
{{ end }}
|