Files
hugo/layouts/partials/head/metadata-prefetch.html
T
2017-03-01 01:15:23 -06:00

17 lines
729 B
HTML

<link rel="dns-prefetch" href="{{ .Site.BaseURL }}">
<!-- Preconnect API. For browser compatibility, check http://caniuse.com/#feat=link-rel-preconnect -->
<link rel="preconnect" href="{{ .Site.BaseURL }}">
<link rel="canonical" href="{{ .Permalink }}">
{{ if .RSSLink }}
<link href="{{ .RSSLink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" />
<link href="{{ .RSSLink }}" rel="feed" type="application/rss+xml" title="{{ .Site.Title }}" />
{{ end }}
{{with .NextInSection }}
<link rel="prefetch" href="{{.Permalink}}">
<link rel="prerender" href="{{.Permalink}}">
{{ end }}
{{with .PrevInSection }}
<link rel="prefetch" href="{{.Permalink}}">
<link rel="prerender" href="{{.Permalink}}">
{{ end }}