Files
capytal.cc/templates/blog_post.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}}