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

	<main role="main">
{{ range (where .Data.Pages ".Params.hidefromhome" "!=" "true") }}
		<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 "January 02, 2006" }}</time></span>
		</article>
{{ end }}
	</main>

{{ partial "footer.html" . }}