11 lines
474 B
HTML
11 lines
474 B
HTML
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
{{ template "_internal/opengraph.html" . }}
|
|
{{ template "_internal/twitter_cards.html" . }}
|
|
{{ $style := resources.Get "/css/main.sass" | toCSS }}
|
|
<link href="{{ $style.RelPermalink }}" rel="stylesheet">
|
|
{{ $title := print .Title " | " .Site.Title }}
|
|
{{ if .IsHome }}{{ $title = .Site.Title }}{{ end }}
|
|
<title>{{ $title }}</title>
|
|
</head>
|