23 lines
924 B
HTML
23 lines
924 B
HTML
<!DOCTYPE html>
|
|
<html lang="{{ .Site.LanguageCode | default "en" }}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{{ .Title }}</title>
|
|
|
|
{{ with .Site.Params.description }}<meta name="description" content="{{ . }}">{{ end }}
|
|
{{ with .Site.Params.author }}<meta name="author" content="{{ . }}">{{ end }}
|
|
<meta name="author" content="{{ .Site.Params.author }}">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<link href="//fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
|
|
|
|
<link rel="stylesheet" href="{{ "css/bundle.css" | relURL }}">
|
|
<link rel="stylesheet" href="{{ "css/style.css" | relURL }}">
|
|
|
|
{{ if .RSSLink -}}<link href="{{ .RSSLink }}" rel="feed" type="application/rss+xml" title="{{ .Site.Title }}">{{- end }}
|
|
{{ .Hugo.Generator }}
|
|
{{ partial "piwik.html" . }}
|
|
</head>
|
|
<body>
|