summaryrefslogtreecommitdiff
path: root/layouts/index.html
blob: a3594e6756209b7e696d60b292ac54a41da91885 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{{ partial "header.html" . }}

	<main role="main">
		<h1 class="list-title">Tech</h1>
{{ range (where .Data.Pages ".Section" "==" "tech") }}
		<article itemscope itemtype="http://schema.org/Blog">
			<h2 class="entry-title" itemprop="headline"><a href="{{ .RelPermalink }}">{{ .Title }}</a></h2>
			<span class="entry-meta"><time itemprop="datePublished" datetime="{{ .Date.Format "2006-01-02" }}">{{ .Date.Format "2006-01-02" }}</time></span>
		</article>
{{ end }}
	</main>

{{ partial "footer.html" . }}