2024-08-29 10:10:19 +00:00
|
|
|
<!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>
|
2024-08-29 21:46:48 +00:00
|
|
|
<!--<p class="">{{ .Params.description }}</p>-->
|
2024-08-29 10:10:19 +00:00
|
|
|
</section>
|
2024-08-29 21:46:48 +00:00
|
|
|
<section class="article-content">
|
2024-08-29 10:10:19 +00:00
|
|
|
{{ .Content }}
|
|
|
|
</section>
|
|
|
|
</article>
|
|
|
|
</main>
|
|
|
|
{{- partial "footer.html" . -}}
|
|
|
|
</body>
|
|
|
|
</html>
|