22 lines
467 B
HTML
22 lines
467 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
{{- partial "head.html" . -}}
|
|
<body>
|
|
|
|
<div class="content">
|
|
{{ if .Site.Params.Stork }}
|
|
<div class="stork-search">
|
|
<label>
|
|
<input type="text" data-stork="home" placeholder=" Search {{ .Site.Title }}...">
|
|
</label>
|
|
</div>
|
|
<div data-stork="home-output"></div>
|
|
<br>
|
|
{{ end }}
|
|
<div class="page">
|
|
{{- block "main" . }}{{- end }}
|
|
</div>
|
|
{{- partial "footer.html" . -}}
|
|
</div>
|
|
</body>
|
|
</html>
|