1
Fork 0

Setup starts of core pages templates

This commit is contained in:
Jake Howard 2017-04-21 09:21:12 +01:00
parent faec5a0344
commit 66b1dcb6c3
2 changed files with 18 additions and 0 deletions

4
content/about.md Normal file
View file

@ -0,0 +1,4 @@
---
title: about
---
example about content

View file

@ -0,0 +1,14 @@
{{ partial "page_start.html" . }}
<div id="page-wrapper">
<section id="main" class="container">
<header>
<h2>Generic</h2>
<p>A generic page for every non-generic situation.</p>
</header>
<div class="box">
<span class="image featured"><img src="images/pic01.jpg" alt="" /></span>
{{ .Content }}
</div>
</section>
</div>
{{ partial "page_end.html" . }}