27 lines
931 B
HTML
27 lines
931 B
HTML
<!DOCTYPE html>
|
|
<!--[if lt IE 8 ]><html lang="en" class="no-js oldie"><![endif]-->
|
|
<!--[if IE 8 ]><html lang="en" class="no-js ie8"><![endif]-->
|
|
<!--[if IE 9 ]><html lang="en" class="no-js ie9"><![endif]-->
|
|
<!--[if (gt IE 9)|!(IE)]><!--><html lang="en" class="no-js"><!--<![endif]-->
|
|
<head>
|
|
<title>{{ .Title }}</title>
|
|
<meta charset="utf-8">
|
|
|
|
<link rel="canonical" href="{{ .Permalink }}">
|
|
|
|
<link rel="icon" href="/favicon.png" type="image/png" sizes="144x144">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1">
|
|
|
|
{{ 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 }}
|
|
|
|
<meta name="theme-color" content="{{ $.Site.Params.themeColor }}" />
|
|
|
|
{{ partial "seo/main" . }}
|
|
|
|
</head>
|
|
|
|
<body> |