Initial commit

This commit is contained in:
Tony Blyler 2016-11-02 23:10:49 -04:00
parent 89eaf19aa2
commit 113550eb8a
24 changed files with 1040 additions and 0 deletions
layouts/pages

12
layouts/pages/single.html Normal file
View file

@ -0,0 +1,12 @@
{{ partial "header.html" . }}
<div class="postBody">
<div class="post">
{{ if .Title }}
<h1>{{ .Title }}</h1>
{{ end }}
<div class="content">
{{ .Content }}
</div>
</div>
</div>
{{ partial "footer.html" . }}