21 lines
436 B
HTML
21 lines
436 B
HTML
{{ define "main"}}
|
|
<article class="prose prose-lg mt-10">
|
|
<h1 class="text-neutral-600">{{ .Title }}</h1>
|
|
{{ .Content }}
|
|
</article>
|
|
|
|
<div class="flex flex-row justify-between">
|
|
<div>
|
|
{{ if .PrevPage }}
|
|
<a href="{{ .PrevPage.Permalink}}">{{ .PrevPage.Title }}</a>
|
|
{{ end }}
|
|
</div>
|
|
<div>
|
|
{{ if .NextPage }}
|
|
<a href="{{ .NextPage.Permalink}}">{{ .NextPage.Title }}</a>
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
|
|
{{ end }}
|