1
Fork 0
theorangeone.net-legacy/layouts/_default/list.html

20 lines
414 B
HTML
Raw Normal View History

2017-04-22 23:24:13 +01:00
{{ partial "page_start.html" . }}
<div id="page-wrapper">
<section id="main" class="container">
<header>
<h2>{{ title .Title }}</h2>
</header>
2017-04-23 12:05:02 +01:00
{{ if .Content }}
<div class="box">
{{ .Content }}
</div>
{{ end }}
<div class="row">
{{ range .Pages.ByTitle }}
2017-04-24 09:06:14 +01:00
{{ partial "box.html" . }}
2017-04-23 12:05:02 +01:00
{{ end }}
</div>
2017-04-22 23:24:13 +01:00
</section>
</div>
{{ partial "page_end.html" . }}