32 lines
1.2 KiB
HTML
32 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{{ .Title }}{{ if ne .Title .Site.Title }} // {{ .Site.Title }}{{ end }}</title>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
|
{{ partial "og.html" . }}
|
|
|
|
<link href="{{ .RSSlink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" />
|
|
<link rel="shortcut icon" href="/favicon.png">
|
|
|
|
<link href="{{ .Site.BaseURL }}/css/webfonts/ptserif/main.css" rel='stylesheet' type='text/css'>
|
|
<link href="{{ .Site.BaseURL }}/css/webfonts/source-code-pro/main.css" rel="stylesheet" type="text/css">
|
|
|
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}/css/style.css">
|
|
|
|
<link href="http://gmpg.org/xfn/11" rel="profile">
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
|
|
|
<!-- Enable responsiveness on mobile devices-->
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
|
|
|
|
<meta name="description" content="{{ .Description }}">
|
|
<meta name="keywords" content="{{ range .Keywords }}{{ . }},{{ end }}">
|
|
<meta name="author" content="{{ .Params.author }}">
|
|
|
|
{{ template "_internal/google_analytics.html" . }}
|
|
|
|
{{ .Hugo.Generator }}
|
|
</head>
|