37 lines
889 B
HTML
37 lines
889 B
HTML
{{ define "main" }}
|
|
|
|
<section class="page-header">
|
|
<div class="container">
|
|
<div class="row justify-content-center">
|
|
<div class="col-lg-8">
|
|
<h1>{{ .Title }}</h1>
|
|
<p>
|
|
{{ .Params.description }}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="blog-single">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-lg-10 mx-auto">
|
|
<article class="blog-single-post">
|
|
{{ if .Params.table }}
|
|
{{ partial "table.html" . }}
|
|
{{ end }}
|
|
{{ .Content }}
|
|
</article>
|
|
</div>
|
|
|
|
<!-- Google Tag Manager (noscript) -->
|
|
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-WD9K8NK9"
|
|
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
|
|
<!-- End Google Tag Manager (noscript) -->
|
|
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
{{ end }} |