|
|
<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>{{ .Title }}{{ if .IsHome }} · {{ .Site.Title }}{{ end }}</title>
|
|
|
<link rel="shortcut icon" href="{{ "images/favicon.ico" | absURL }}">
|
|
|
<link rel="stylesheet" href="{{ "css/style.css" | absURL }}">
|
|
|
<link rel="stylesheet" href="{{ "css/highlight.css" | absURL }}">
|
|
|
{{ range .Site.Params.customCSS }}
|
|
|
<link rel="stylesheet" href="{{ . | absURL }}">
|
|
|
{{ end }}
|
|
|
|
|
|
{{ if eq .Site.Params.iconFont "font-awesome" }}
|
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css">
|
|
|
{{ else }}
|
|
|
<link rel="stylesheet" href="{{ "css/monosocialiconsfont.css" | absURL }}">
|
|
|
{{ 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" . }}
|