You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
662 B
19 lines
662 B
<html> |
|
<head> |
|
<title>{{ .Title }}</title>{{ if .Site.Params.Favicon }} |
|
<link rel="shortcut icon" href="{{ .Site.Params.Favicon }}">{{ end }} |
|
<link rel="stylesheet" href="css/slate.css"> |
|
</head> |
|
|
|
<body{{ if .Site.Params.BackgroundStyle }} style='{{ .Site.Params.BackgroundStyle | safeCSS }}'{{ end }} |
|
{{- if .Site.Params.BackgroundImages }} data-backgrounds='{{ range .Site.Params.BackgroundImages }}{{ . }},{{ end }}'{{- end }}> |
|
|
|
{{ partial "nav.html" . }} |
|
|
|
<div class="container">{{ partial "tile_slate.html" . }} |
|
</div> |
|
|
|
</body> |
|
<link href="https://fonts.googleapis.com/css?family=Exo" rel="stylesheet"> |
|
<script src="js/slate.js"></script> |
|
</html>
|
|
|