section.html 522 B

1234567891011121314
  1. {{ $col_id := .Get "color" | default .Ordinal -}}
  2. {{ $height := .Get "height" | default "auto" -}}
  3. {{ $type := .Get "type" | default "container" -}}
  4. <div><a id="td-block-{{ .Ordinal }}" class="td-offset-anchor"></a></div>
  5. <section class="row td-box td-box--{{ $col_id }} td-box--height-{{ $height }}">
  6. <div class="col">
  7. <div class="{{ $type }}">
  8. {{/* Do NOT remove this comment! It ends the HTML block above. See https://spec.commonmark.org/0.30/#html-blocks, 7. */}}
  9. {{ .Inner -}}
  10. </div>
  11. </div>
  12. </section>
  13. {{/**/ -}}