|
|
@ -1,25 +1,26 @@ |
|
|
|
<!DOCTYPE html> |
|
|
|
<html {{ with .Site.LanguageCode }}lang="{{ . }}"{{ end }}> |
|
|
|
<head> |
|
|
|
<meta charset="utf-8"> |
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> |
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1"> |
|
|
|
{{ with .Site.Params.name }}<meta name="author" content="{{ . }}">{{ end }} |
|
|
|
{{ with .Site.Params.description }}<meta name="description" content="{{ . }}">{{ end }} |
|
|
|
{{ .Hugo.Generator }} |
|
|
|
<title>{{ if .IsHome }}{{ .Title }}{{ else }}{{ .Title }} · {{ .Site.Title }}{{ end }}</title> |
|
|
|
<link rel="shortcut icon" href="{{ .Site.BaseURL }}images/favicon.ico"> |
|
|
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/style.css"> |
|
|
|
{{ range .Site.Params.customCSS }} |
|
|
|
<link rel="stylesheet" href="{{ $.Site.BaseURL }}{{ . }}"> |
|
|
|
{{ end }} |
|
|
|
<head> |
|
|
|
<meta charset="utf-8"> |
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> |
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1"> |
|
|
|
{{ with .Site.Params.name }}<meta name="author" content="{{ . }}">{{ end }} |
|
|
|
{{ with .Site.Params.description }}<meta name="description" content="{{ . }}">{{ end }} |
|
|
|
{{ .Hugo.Generator }} |
|
|
|
<title>{{ if .IsHome }}{{ .Title }}{{ else }}{{ .Title }} · {{ .Site.Title }}{{ end }}</title> |
|
|
|
<link rel="shortcut icon" href="{{ .Site.BaseURL }}images/favicon.ico"> |
|
|
|
{{ $style := resources.Get "css/style.css" | resources.Minify | resources.Fingerprint }} |
|
|
|
<link rel="stylesheet" href="{{ $style.Permalink }}"> |
|
|
|
{{ range .Site.Params.customCSS }} |
|
|
|
<link rel="stylesheet" href="{{ $.Site.BaseURL }}{{ . }}"> |
|
|
|
{{ end }} |
|
|
|
|
|
|
|
{{ if .Site.Params.enableRSS }} |
|
|
|
<link href="{{ .Site.RSSLink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" /> |
|
|
|
{{ end }} |
|
|
|
{{ if .Site.Params.enableRSS }} |
|
|
|
<link href="{{ .Site.RSSLink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" /> |
|
|
|
{{ end }} |
|
|
|
|
|
|
|
{{ template "_internal/opengraph.html" . }} |
|
|
|
{{ template "_internal/google_news.html" . }} |
|
|
|
{{ template "_internal/schema.html" . }} |
|
|
|
{{ template "_internal/twitter_cards.html" . }} |
|
|
|
</head> |
|
|
|
{{ template "_internal/opengraph.html" . }} |
|
|
|
{{ template "_internal/google_news.html" . }} |
|
|
|
{{ template "_internal/schema.html" . }} |
|
|
|
{{ template "_internal/twitter_cards.html" . }} |
|
|
|
</head> |