13 lines
469 B
HTML
13 lines
469 B
HTML
|
{{ define "main" }}
|
||
|
<main
|
||
|
class="justify-self-center mx-auto mb-16 px-6 sm:px-4 md:px-0 prose dark:prose-invert prose-slate lg:prose-lg hover:prose-a:text-sky-500">
|
||
|
{{ .Content }}
|
||
|
</main>
|
||
|
{{ range .Pages }}
|
||
|
<article
|
||
|
class="justify-self-center mx-auto mb-16 px-6 sm:px-4 md:px-0 prose dark:prose-invert prose-slate lg:prose-lg hover:prose-a:text-sky-500">
|
||
|
<h1><a href="{{ .Permalink }}">{{ .Title }}</a></h1>
|
||
|
{{ .Summary }}
|
||
|
</article>
|
||
|
{{ end }}
|
||
|
{{ end }}
|