mirror of
https://github.com/andrewgioia/blog.git
synced 2024-12-22 18:39:55 +00:00
38 lines
1012 B
HTML
38 lines
1012 B
HTML
{{ define "main" }}
|
|
<main id="home" aria-role="main">
|
|
<div class="intro">
|
|
{{.Content}}
|
|
</div>
|
|
<ul class="posts">
|
|
{{ range where .Site.RegularPages "Section" "posts" }}
|
|
<li>
|
|
<div>
|
|
<a href="{{ .Permalink }}" class="wa link">
|
|
<span>{{ .LinkTitle }}</span>
|
|
<b class="arrow"></b>
|
|
</a>
|
|
</div>
|
|
<time>
|
|
{{ .PublishDate.Format "January 2006" }}
|
|
</time>
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
<ul class="thoughts">
|
|
{{ range where .Site.RegularPages "Section" "thoughts" }}
|
|
<li>
|
|
<a href="{{ .Permalink }}" class="wa link">
|
|
<span>
|
|
{{ .LinkTitle }}
|
|
</span>
|
|
<time>
|
|
{{ .PublishDate.Format "January 2, 2006" }}
|
|
</time>
|
|
<b class="arrow"></b>
|
|
</a>
|
|
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
</main>
|
|
{{ end }} |