publications

This commit is contained in:
Madison Scott-Clary
2019-07-08 23:43:27 -07:00
parent 1c61a141bb
commit 3116310470
9 changed files with 140 additions and 23 deletions

20
layouts/page/single.html Normal file
View File

@ -0,0 +1,20 @@
{{ define "main" }}
<article class="article-page">
{{ with .Params.img }}
<div class="page-image">
<div class="cover-image" style="background: url(/assets/img/{{.}}) center no-repeat; background-size: cover;"></div>
</div>
{{ end }}
<div class="wrapper{{ if .Params.img }} with-image{{ end }}">
<div class="page-content">
<div class="header-page">
<h1 class="page-title">{{ .Title }}</h1>
</div>
{{ .Content }}
<div class="page-footer">
{{ partial "donate.html" }}
</div>
</div>
</div> <!-- End Wrapper -->
</article>
{{ end }}