10 lines
441 B
HTML
10 lines
441 B
HTML
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width">
|
|
<title>{{ if .IsHome }}{{ site.Title }}{{ else }}{{ printf "%s | %s" .Title site.Title }}{{ end }}</title>
|
|
|
|
{{ range .AlternativeOutputFormats -}}
|
|
<link rel="{{ .Rel }}" type="{{ .MediaType.Type }}" href="{{ .Permalink }}">
|
|
{{ end }}
|
|
|
|
{{ partialCached "base/head/css.html" (dict "page" . "cssResource" "base/css.html") }}
|
|
{{ partialCached "base/head/js.html" . }}
|