2023-06-02 16:17:07 +00:00
|
|
|
{{ 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>
|
|
|
|
|
2023-06-05 16:42:16 +00:00
|
|
|
<section class="blog-single">
|
2023-06-02 16:17:07 +00:00
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-lg-10 mx-auto">
|
2023-06-05 16:42:16 +00:00
|
|
|
<article class="blog-single-post">
|
2023-07-26 16:30:26 +00:00
|
|
|
{{ if .Params.table }}
|
|
|
|
{{ partial "table.html" . }}
|
|
|
|
{{ end }}
|
2023-06-02 16:17:07 +00:00
|
|
|
{{ .Content }}
|
2023-06-05 16:42:16 +00:00
|
|
|
</article>
|
2023-06-02 16:17:07 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
{{ end }}
|