2018-02-09 16:16:23 +00:00
|
|
|
<!DOCTYPE html>
|
2018-04-01 12:56:28 +00:00
|
|
|
<html class="h" lang="{{ .Site.LanguageCode | default "en-us" }}">
|
2018-02-09 16:16:23 +00:00
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2018-05-22 12:30:01 +00:00
|
|
|
<meta name="theme-color" content="{{ .Site.Params.Manifest.themeColor | default "#1b1b1b" }}">
|
2018-02-09 16:16:23 +00:00
|
|
|
<title>{{ if not .IsHome }}{{ .Title }} | {{ end }}{{ .Site.Title }}</title>
|
2018-03-04 07:38:20 +00:00
|
|
|
<meta name="description" content="{{ if .IsHome }}{{ .Site.Params.description }}{{ else }}{{ .Description }}{{ end }}">
|
|
|
|
{{ with .Site.Params.author }}<meta name="author" content="{{ . }}">{{ end }}
|
2018-03-04 07:31:50 +00:00
|
|
|
{{ if .Site.Params.opengraph }}{{ template "_internal/opengraph.html" . }}{{ end }}
|
|
|
|
{{ if .Site.Params.twitter_cards }}{{ template "_internal/twitter_cards.html" . }}{{ end }}
|
2018-02-11 06:35:19 +00:00
|
|
|
<link rel="stylesheet" href="{{ "css/main.css" | relURL }}">
|
2018-03-06 14:27:34 +00:00
|
|
|
<link rel="icon" href="{{ "icons/16.png" | relURL }}" sizes="16x16" type="image/png">
|
|
|
|
<link rel="icon" href="{{ "icons/32.png" | relURL }}" sizes="32x32" type="image/png">
|
2018-03-12 18:28:20 +00:00
|
|
|
<link rel="manifest" href="{{ "manifest.json" | relURL }}">
|
2018-03-04 07:33:32 +00:00
|
|
|
{{ template "_internal/google_analytics_async.html" . }}
|
2018-02-09 16:16:23 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header class="header">
|
2018-04-21 06:34:32 +00:00
|
|
|
<a class="logo" href="{{ "" | relURL }}">{{ .Site.Title }}</a>
|
2018-04-01 12:56:28 +00:00
|
|
|
{{ partial "menu.html" . }}
|
2018-02-09 16:16:23 +00:00
|
|
|
</header>
|