9 lines
344 B
HTML
9 lines
344 B
HTML
|
<section class="section-home {{ .Params.color }} flex w-100">
|
||
|
<div class="flex align-center bck-marked w-100 section-header">
|
||
|
<h2>{{ .Params.title }}</h2>
|
||
|
<p class="subtitle">{{ .Params.description | markdownify }}</p>
|
||
|
</div>
|
||
|
<div class="content">
|
||
|
{{ partial "content.html" .Content }}
|
||
|
</div>
|
||
|
</section>
|