2018-09-23 07:11:35 -04:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<meta name="author" content="{{ .Site.Author }}" />
|
2018-09-24 10:39:32 -04:00
|
|
|
<link rel="shortcut icon" type="image/x-icon" href="/img/favicon.ico">
|
|
|
|
<link rel="stylesheet" href="/css/style.css">
|
|
|
|
<link rel="stylesheet" href="/css/markdown.css">
|
|
|
|
<link rel="stylesheet" href="/css/syntax-highlight.css">
|
2018-09-23 07:11:35 -04:00
|
|
|
{{ range .Site.Params.custom_css }}
|
2018-09-24 10:39:32 -04:00
|
|
|
<link rel="stylesheet" href="{{ . }}">
|
2018-09-23 07:11:35 -04:00
|
|
|
{{ end }}
|
|
|
|
<title>
|
|
|
|
{{ if eq .Title .Site.Title }}
|
|
|
|
{{ .Site.Title }}
|
|
|
|
{{ else }}
|
|
|
|
{{ .Title }} - {{ .Site.Title }}
|
|
|
|
{{ end }}
|
|
|
|
</title>
|
|
|
|
</head>
|