19 lines
493 B
HTML
19 lines
493 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
{{- partial "head.html" . -}}
|
|
<body>
|
|
{{- partial "header.html" . -}}
|
|
<main class="flex">
|
|
<article class="flex article">
|
|
<section class="article-header flex">
|
|
<h1>{{ .Params.title }}</h1>
|
|
<!--<p class="">{{ .Params.description }}</p>-->
|
|
</section>
|
|
<section class="article-content">
|
|
{{ .Content }}
|
|
</section>
|
|
</article>
|
|
</main>
|
|
{{- partial "footer.html" . -}}
|
|
</body>
|
|
</html>
|