bobatheme/layouts/partials/seo-tags/link.html

16 lines
604 B
HTML
Raw Normal View History

2021-11-20 18:24:56 -06:00
{{ range .AlternativeOutputFormats }}
<link rel="{{ .Rel }}" type="{{ .MediaType.Type }}" href="{{ .Permalink }}" title="{{ $.Site.Title | plainify }}">
2021-11-20 18:24:56 -06:00
{{ end }}
{{ with .OutputFormats.Get "rss" }}
<link rel="start" type="{{ .MediaType.Type }}" href="{{ .Permalink }}" title="{{ $.Site.Title | plainify }}">
2021-11-20 18:24:56 -06:00
{{ end }}
{{ with .PrevInSection }}
<link rel="prev" title="{{ .Title | plainify }}" href="{{ .Permalink }}">
2021-11-20 18:24:56 -06:00
{{ end }}
{{ with .NextInSection }}
<link rel="next" title="{{ .Title | plainify }}" href="{{ .Permalink }}">
2021-11-20 18:24:56 -06:00
{{ end }}
<link rel="canonical" href="{{ .Permalink }}">