15 lines
307 B
HTML
15 lines
307 B
HTML
{{ define "main" }}
|
|
<article class="h-full max-w-full flex flex-col items-center justify-center">
|
|
<section class="mt-6">
|
|
{{ .Content }}
|
|
</section>
|
|
<section>
|
|
{{ partial "recent-articles/main.html" . }}
|
|
</section>
|
|
<footer class="pt-8">
|
|
</footer>
|
|
</article>
|
|
{{ end }}
|
|
|
|
|