mirror of
https://github.com/gohugoio/hugo.git
synced 2026-09-02 11:42:37 +00:00
17 lines
729 B
HTML
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 }}
|