Welcome to mirror list, hosted at ThFree Co, Russian Federation.

row.html « structure « shortcodes « layouts - github.com/pjbakker/flexible-seo-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 08c04de2d724ed9a5c2089e7f88fc2c4d27aced7 (plain)
1
2
3
4
5
6
7
8
{{- $col_definition := .Get "width" | default "col" -}}
{{- $justify_definition := .Get "justify" | default "justify-content-center" -}}
{{- $align_definition := .Get "align" | default "" -}}
<div class="row {{ $justify_definition }}">
  <div class="{{ $col_definition }} {{ $align_definition }}">
{{ .Inner }}
  </div>
</div>