aboutsummaryrefslogtreecommitdiff
path: root/generators/hugo/themes/tdro/layouts/_default/list.html
blob: 6605db7f3444cd643f3d6411b6064d124bb1f4f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{{ define "main" }}
<section class="section" itemscope itemtype="http://schema.org/AboutPage">
	<div class="container">
		<div class="columns is-centered">
			<div class="column is-7">
				<article class="content">
				<h2 class="title">{{ .Title | markdownify }}</h2>
				{{ range .Paginator.Pages }}
				{{ .Render "summary" }}
				{{ end }}
				</article>
				{{ partial "pagination.html" . }}
			</div>
		</div>
	</div>
</section>
{{ end }}