landingpage/layouts/section/faq.html

17 lines
349 B
HTML

{{ define "main" }}
{{/* An example of custom layout. Displays each page in one folder as a <section> of the page. */}}
<header>
<h2>{{ .Title }}</h2>
<p>{{ .Description }}</p>
</header>
{{ range .Pages }}
<div class="row">
<div class="col-12">
<section class="box">
{{ .Content }}
</section>
</div>
</div>
{{ end }}
{{ end }}