hugo-theme-zzo/layouts/partials/footer/links-feed.html

15 lines
488 B
HTML
Raw Normal View History

2019-11-04 13:09:44 +00:00
<label class="label p2">{{ i18n "footer-subscribe" }}</label>
<div class="feed">
{{ $list := .AlternativeOutputFormats }}
{{ $length := (len $list) }}
{{ if $list }}
{{ range $index, $element := $list }}
2019-11-17 16:44:04 +00:00
{{ if ne .Name "webappmanifest" }}
{{ if eq $index 1 }} &middot; {{ end }}
<a rel="{{ .Rel }}" type="{{ .MediaType.Type }}" href="{{ .Permalink | safeURL }}" class="caption">
{{ .Name }}
</a>
{{ end }}
2019-11-04 13:09:44 +00:00
{{ end }}
{{ end }}
</div>