Initial commit

This commit is contained in:
Joseph Hutchinson
2018-03-15 11:53:53 -04:00
commit 83cccd2e46
86 changed files with 497 additions and 0 deletions

10
layouts/_default/li.html Normal file
View File

@@ -0,0 +1,10 @@
<article class="card">
<div class="card-body">
<h2 class="post-title card-text">
<a href="{{ .Permalink }}" rel="bookmark" title="Link to {{ .Title }}">{{ .Title }}</a>
</h2>
<span class="post-date card-text">Published {{ .Date.Format "Jan 2, 2006" }}</span>
<p>{{ .Description }}</p>
{{ if .Truncated }}<a class="moretag card-text" href="{{ .Permalink }}">Continue reading</a>{{ end }}
</div>
</article>