summaryrefslogtreecommitdiffhomepage
path: root/layouts/shortcodes/blocks/section.html
blob: de7e6c8f11c2c6fd2654a688017b6b6e21b1c935 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{{ $col_id := .Get "color" | default .Ordinal }}
{{ $height := .Get "height" | default "auto"  }}
<a id="td-block-{{ .Ordinal }}" class="td-offset-anchor"></a>
<section class="row td-box td-box--{{ $col_id }} td-box--gradient td-box--height-{{ $height }}">
	<div class="col">
    <div class="container">
      <div class="row">
        {{ .Inner }}
      </div>
    </div>
	</div>
</section>