2016-11-05 21:35:33 +02:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="{{ .Site.LanguageCode }}">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
|
|
|
<meta name="description" content="{{ .Description }}">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<meta name="twitter:card" content="summary">
|
|
|
|
<meta name="twitter:site" content="@echo">
|
|
|
|
<meta name="twitter:title" content="{{ if ne .URL "/" }}{{ .Title }} | {{ end }}{{ .Site.Title }}">
|
|
|
|
<meta name="twitter:description" content="{{ .Description }}">
|
|
|
|
<meta name="twitter:image" content="{{ .Site.Params.image }}">
|
|
|
|
<meta property="og:title" content="{{ if ne .URL "/" }}{{ .Title }} | {{ end }}{{ .Site.Title }}">
|
|
|
|
<meta property="og:site_name" content="echo">
|
|
|
|
<meta property="og:og:description" content="{{ .Description }}">
|
|
|
|
<meta property="og:url" content="{{ .Site.BaseURL }}">
|
|
|
|
<meta property="og:image" content="{{ .Site.Params.image }}">
|
|
|
|
<title>
|
|
|
|
{{ if ne .URL "/" }}{{ .Title }} | {{ end }}{{ .Site.Title }}
|
|
|
|
</title>
|
|
|
|
<link rel="stylesheet" href="https://unpkg.com/font-awesome@4.6.3/css/font-awesome.min.css">
|
|
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/docsearch.js/1/docsearch.min.css">
|
|
|
|
<link rel="stylesheet" href="https://cdn.labstack.com/styles/w3.css">
|
|
|
|
<link rel="stylesheet" href="https://cdn.labstack.com/styles/prism.css">
|
|
|
|
<link rel="stylesheet" href="https://cdn.labstack.com/styles/base.css">
|
|
|
|
<link rel="stylesheet" href="https://cdn.labstack.com/styles/doc.css">
|
|
|
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}/styles/main.css">
|
2016-11-09 08:41:35 +02:00
|
|
|
<script>
|
|
|
|
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
|
|
|
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
|
|
|
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
|
|
|
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
|
|
|
|
ga('create', 'UA-85059636-2', 'auto');
|
|
|
|
ga('send', 'pageview');
|
|
|
|
</script>
|
2016-11-05 21:35:33 +02:00
|
|
|
</head>
|