18 lines
434 B
HTML
18 lines
434 B
HTML
|
{{ define "main" }}
|
||
|
<article class="single" itemscope itemtype="http://schema.org/BlogPosting">
|
||
|
<h1 class="headline" itemprop="headline">{{ .Title | title }}</h1>
|
||
|
|
||
|
<section class="body" itemprop="articleBody">
|
||
|
{{ .Content }}
|
||
|
|
||
|
<ul class="article-list">
|
||
|
{{ range.Pages -}}
|
||
|
<li>
|
||
|
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
|
||
|
</li>
|
||
|
{{ end -}}
|
||
|
</ul>
|
||
|
</section>
|
||
|
</article>
|
||
|
{{ end }}
|