12 lines
345 B
HTML
12 lines
345 B
HTML
{{define "blog-post"}}
|
|
{{template "layout-page-start" (args "Title" .Title)}}
|
|
<div class="h-full w-full pt-[30vh]">
|
|
{{template "nav-bar" (args "Lang" .Lang)}}
|
|
<main class="mx-10 text-justify md:mx-auto md:w-[80%]" id="blog-post">
|
|
{{.Content}}
|
|
</main>
|
|
{{template "footer" (args "Lang" .Lang)}}
|
|
</div>
|
|
{{template "layout-page-end"}}
|
|
{{end}}
|