18 lines
608 B
HTML
18 lines
608 B
HTML
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>{{ $.Site.Title }} - {{ .Title }}</title>
|
|
<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>
|