22 lines
459 B
HTML
22 lines
459 B
HTML
<!DOCTYPE HTML>
|
|
{{- partial "lang.html" . }}
|
|
<head>
|
|
<title>
|
|
{{- block "title" . }}
|
|
{{- with .Title }}{{ . }} - {{ end }}{{ .Site.Title -}}
|
|
{{- end -}}
|
|
</title>
|
|
{{- partial "head.html" . }}
|
|
</head>
|
|
<body class="loading">
|
|
<div id="wrapper">
|
|
{{- partial "header.html" . }}
|
|
<div id="main">
|
|
{{ block "main" . }}
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
{{- partial "scripts.html" . }}
|
|
</body>
|
|
</html>
|