24 lines
No EOL
518 B
HTML
24 lines
No EOL
518 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
{{ $style := resources.Get "sass/main.scss" | css.Sass | resources.Minify }}
|
|
<link rel="stylesheet" href="{{ $style.Permalink }}">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta charset="utf-8">
|
|
<title>
|
|
{{ block "title" . }}
|
|
{{ .Site.Title }}
|
|
{{ end }}
|
|
</title>
|
|
</head>
|
|
|
|
<body>
|
|
{{ block "main" . }}
|
|
<!-- The part of the page that begins to differ between templates -->
|
|
{{ end }}
|
|
<hr>
|
|
{{ partial "footer" }}
|
|
</body>
|
|
|
|
</html> |