10 lines
489 B
HTML
10 lines
489 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>
|
|
|
|
<!-- We're including bootstrap from a gitmodule, should be able to load it here -->
|
|
<link rel="stylesheet" type="text/css" href="/css/bootstrap/dist/css/bootstrap.min.css">
|
|
<link rel="stylesheet" type="text/css" href="/style.css">
|
|
|
|
{{ partialCached "head/css.html" . }}
|
|
{{ partialCached "head/js.html" . }} |