Setup starts of core pages templates
This commit is contained in:
parent
faec5a0344
commit
66b1dcb6c3
2 changed files with 18 additions and 0 deletions
4
content/about.md
Normal file
4
content/about.md
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
---
|
||||||
|
title: about
|
||||||
|
---
|
||||||
|
example about content
|
|
@ -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" . }}
|
Loading…
Reference in a new issue