25 lines
682 B
HTML
25 lines
682 B
HTML
{{ define "main" }}
|
|
|
|
<article id="resume" class="post-single">
|
|
<header class="post-title">
|
|
<h1>{{ .Title }}</h1>
|
|
</header>
|
|
|
|
<section class="post-content">
|
|
{{ .Content }}
|
|
</section>
|
|
|
|
<!-- Post Nav -->
|
|
{{ $pages := where site.RegularPages "Type" "in" site.Params.mainSections }}<!---->
|
|
{{ if and (gt (len $pages) 1) (in $pages . ) }}
|
|
<nav class="post-nav">
|
|
{{ with $pages.Next . }}
|
|
<a class="prev" href="{{ .Permalink }}"><span>←</span><span>{{ .Name }}</span></a>
|
|
{{ end }} {{ with $pages.Prev . }}
|
|
<a class="next" href="{{ .Permalink }}"><span>{{ .Name }}</span><span>→</span></a>
|
|
{{ end }}
|
|
</nav>
|
|
{{ end }}
|
|
</article>
|
|
|
|
{{ end }}
|