18 lines
541 B
HTML
18 lines
541 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="{{ .Site.LanguageCode }}">
|
||
|
{{- partial "head.html" . -}}
|
||
|
<body>
|
||
|
{{- partial "header.html" . -}}
|
||
|
{{ block "main" . }}
|
||
|
<div class="article">
|
||
|
<div class="title">
|
||
|
<h1 class="content-title">{{ .Title }}</h1>
|
||
|
<div class="divider"></div>
|
||
|
</div>
|
||
|
<!-- <h6>{{ .Date.Format "Mon, Jan 2, 2006" }}</h6> -->
|
||
|
{{ .Content }}
|
||
|
</div>
|
||
|
{{ end }}
|
||
|
{{- partial "footer.html" . -}}
|
||
|
</body>
|
||
|
</html>
|