19 lines
741 B
HTML
19 lines
741 B
HTML
<head>
|
|
<title>{{ $.Site.Title }} - {{ .Title }}</title>
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
|
|
<link rel="icon" href="{{ $.Site.BaseURL }}{{ $.Site.Params.favicon }}" />
|
|
<meta name="description" content="{{ $.Site.Params.description }}" />
|
|
|
|
{{ hugo.Generator }}
|
|
|
|
{{ template "_internal/twitter_cards.html" . }}
|
|
{{ template "_internal/opengraph.html" . }}
|
|
|
|
<link rel="stylesheet" type="text/css" href="/css/base.css"/>
|
|
<link rel="stylesheet" type="text/css" href="/css/media-queries.css"/>
|
|
|
|
{{ range .Site.Params.custom_css }}
|
|
<link rel="stylesheet" type="text/css" href="{{ . | relURL }}"/>
|
|
{{ end }}
|
|
</head>
|