aboutsummaryrefslogtreecommitdiff
path: root/themes/flamingo/layouts/index.html
blob: 0e07e11d6c972f636580bc98a06e9c4cd0d533e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{{ define "main" }}
<!-- Copy of list.html -->
<main>
	{{ partial "post-description.html" }}
	<div class="blog-list">
		{{ range .Paginator.Pages }}
		{{ .Render "summary" }}
		{{ end }}
	</div>
		<div>
			<h3>WHAT I READ</h3>
		</div>
		<div>
			<ul>
                {{ partial "openring.html" . }}
			</ul>
		</div>
</main>
{{ end }}