16 lines
575 B
HTML
16 lines
575 B
HTML
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<base href="{{ .Site.BaseURL }}">
|
|
|
|
<link rel="stylesheet" type="text/css" href="/css/style.css">
|
|
<link id="theme_css" rel="stylesheet" href="/css/style.css">
|
|
{{ range .AlternativeOutputFormats -}}
|
|
{{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
|
|
{{ end -}}
|
|
|
|
{{ $title := print .Site.Title " | " .Title }}
|
|
{{ if .IsHome }}{{ $title = .Site.Title }}{{ end }}
|
|
<title>{{ $title }}</title>
|
|
</head>
|