Initial commit

This commit is contained in:
Steven Engler
2019-05-17 18:45:07 -04:00
commit 1522656f46
18 changed files with 952 additions and 0 deletions

30
layouts/index.html Normal file
View File

@ -0,0 +1,30 @@
{{ define "main" }}
{{ .Content }}
{{ if gt ( len ( where .Pages "Section" "posts" )) 0 }}
<h2>Recent Posts</h2>
{{ range first 2 ( where .Pages "Section" "posts" ) }}
<article class="all-list">
<div class="title-list">
<h3><a href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
<div class="title-list-date">
{{ if eq .Date.IsZero false }}
<time>{{ .Date.Format "Monday, January 2, 2006" }}</time>
{{ end }}
{{ if (and (eq .Lastmod.IsZero false) (ne .Lastmod .Date)) }}
(updated)
{{ end }}
</div>
</div>
<div class="body-list">
<p></p> {{/* Spacing is weird if we don't include this */}}
<p>
{{ .Summary }}
</p>
{{ if .Truncated }}
<a href="{{ .RelPermalink }}">Read More…</a>
{{ end }}
</div>
</article>
{{ end }}
{{ end }}
{{ end }}