Cleanup single page content
This commit is contained in:
parent
66b1dcb6c3
commit
5777da3dda
5 changed files with 16 additions and 17 deletions
|
@ -1,4 +1,4 @@
|
||||||
---
|
---
|
||||||
title: about
|
title: About
|
||||||
---
|
---
|
||||||
example about content
|
example about content
|
||||||
|
|
|
@ -1,14 +1,16 @@
|
||||||
{{ partial "page_start.html" . }}
|
{{ partial "page_start.html" . }}
|
||||||
<div id="page-wrapper">
|
<div id="page-wrapper">
|
||||||
<section id="main" class="container">
|
<section id="main" class="container">
|
||||||
<header>
|
<header>
|
||||||
<h2>Generic</h2>
|
<h2>{{ title .Title }}</h2>
|
||||||
<p>A generic page for every non-generic situation.</p>
|
{{ if .Params.subtitle }}
|
||||||
</header>
|
<p>{{ .Params.subtitle }}</p>
|
||||||
<div class="box">
|
{{ end }}
|
||||||
<span class="image featured"><img src="images/pic01.jpg" alt="" /></span>
|
</header>
|
||||||
{{ .Content }}
|
<div class="box">
|
||||||
</div>
|
<span class="image featured"><img src="images/pic01.jpg" alt="" /></span>
|
||||||
</section>
|
{{ .Content }}
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
</div>
|
</div>
|
||||||
{{ partial "page_end.html" . }}
|
{{ partial "page_end.html" . }}
|
||||||
|
|
|
@ -1,13 +1,8 @@
|
||||||
{{ partial "page_start.html" . }}
|
{{ partial "page_start.html" . }}
|
||||||
<div id="page-wrapper">
|
|
||||||
<!-- Banner -->
|
<!-- Banner -->
|
||||||
<section id="banner">
|
<section id="banner">
|
||||||
<h2>Alpha</h2>
|
<h2>Alpha</h2>
|
||||||
<p>Another fine responsive site template freebie by HTML5 UP.</p>
|
<p>Another fine responsive site template freebie by HTML5 UP.</p>
|
||||||
<ul class="actions">
|
|
||||||
<li><a href="#" class="button special">Sign Up</a></li>
|
|
||||||
<li><a href="#" class="button">Learn More</a></li>
|
|
||||||
</ul>
|
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<!-- Main -->
|
<!-- Main -->
|
||||||
|
@ -98,5 +93,4 @@
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
</div>
|
|
||||||
{{ partial "page_end.html" . }}
|
{{ partial "page_end.html" . }}
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{{ partial "footer.html" . }}
|
{{ partial "footer.html" . }}
|
||||||
|
</div>
|
||||||
{{ partial "scripts.html" . }}
|
{{ partial "scripts.html" . }}
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -14,3 +14,5 @@
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
{{ partial "navbar.html" . }}
|
{{ partial "navbar.html" . }}
|
||||||
|
|
||||||
|
<div id="page-wrapper">
|
||||||
|
|
Loading…
Reference in a new issue