File tree Expand file tree Collapse file tree 1 file changed +40
-0
lines changed
Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Original file line number Diff line number Diff line change 1+ <!DOCTYPE html>
2+ < html lang ="{{ site.Language.LanguageCode }} ">
3+ < head >
4+ < title > Redirect {{ .Permalink }}</ title >
5+ < link rel ="canonical " href ="{{ .Permalink }} ">
6+ < meta name ="robots " content ="noindex ">
7+ < meta charset ="utf-8 ">
8+ {{ if .Site.Params.favicon }}
9+ < link rel ="icon " type ="image/x-icon " href ='{{ .Site.Params.favicon }} '>
10+ {{ else }}
11+ < link rel ="icon " type ="image/x-icon " href ='{{ "images/favicon.ico" | absURL }} '>
12+ {{ end }}
13+ < meta name ="theme-color " content ="#1e2327 ">
14+
15+ < meta name ="description "
16+ content ="{{ if .IsHome }}{{ .Site.Params.tagline }}{{ else }}{{ .Summary | plainify }}{{ end }} " />
17+ < meta name ="keywords "
18+ content ='{{ with .Params.Keywords }}{{ delimit . ", " }}{{ else }}{{ $.Site.Params.Keywords }}{{ end }} ' />
19+ < meta name ="robots " content ="index,follow " />
20+
21+ <!-- Twitter Card -->
22+ {{ template "_internal/twitter_cards.html" . }}
23+
24+ <!-- OG data -->
25+ {{ template "_internal/opengraph.html" . }}
26+
27+ <!-- RSS -->
28+ {{ with .OutputFormats.Get "RSS" }}
29+ < link href ="{{ .RelPermalink }} " rel ="alternate " type ="application/rss+xml " title ="{{ $.Site.Title }} " />
30+ {{ end }}
31+
32+ <!-- JSON Feed -->
33+ {{ with .OutputFormats.Get "json" }}
34+ < link href ="{{ .RelPermalink }} " rel ="alternate " type ="application/json " title ="{{ $.Site.Title }} " />
35+ {{ end }}
36+
37+ {{ partial "faro-analytics/assets/js" . }}
38+ < meta http-equiv ="refresh " content ="0; url={{ .Permalink }} ">
39+ </ head >
40+ </ html >
You can’t perform that action at this time.
0 commit comments