lead.html 810 B

1234567891011121314151617181920
  1. {{ $col_id := .Get "color" | default .Ordinal -}}
  2. {{ $height := .Get "height" | default "auto" -}}
  3. {{ with .Get "height" -}}
  4. {{ if not ( or ( eq . "auto" ) ( eq . "min" ) ( eq . "med" ) ( eq . "max" ) ( eq . "full" ) ) -}}
  5. {{ errorf "shortcode 'lead': parameter height is %q, must be one of 'auto', 'min', 'med', 'max' or 'full'." . -}}
  6. {{ end -}}
  7. {{ end -}}
  8. <div><a id="td-block-{{ .Ordinal }}" class="td-offset-anchor"></a></div>
  9. <section class="row td-box td-box--{{ $col_id }} position-relative td-box--height-{{ $height }}">
  10. <div class="col-12">
  11. <div class="container text-center td-arrow-down">
  12. <div class="h4 mb-0">
  13. {{/* Do NOT remove this comment! It ends the HTML block above. See https://spec.commonmark.org/0.30/#html-blocks, 7. */}}
  14. {{ .Inner }}
  15. </div>
  16. </div>
  17. </div>
  18. </section>
  19. {{/**/ -}}