9 lines
414 B
HTML
9 lines
414 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>
|
||
|
{{ partialCached "head/css.html" . }}
|
||
|
{{ partialCached "head/js.html" . }}
|
||
|
{{ with .OutputFormats.Get "rss" -}}
|
||
|
{{ printf `<link rel=%q type=%q href=%q title=%q>` .Rel .MediaType.Type .Permalink site.Title | safeHTML }}
|
||
|
{{ end }}
|