github.com/e154/smart-home@v0.17.2-0.20240311175135-e530a6e5cd45/doc/themes/docsy/layouts/shortcodes/blocks/section.html (about)

     1  {{ $_hugo_config := `{ "version": 1 }` }}
     2  {{ $col_id := .Get "color" | default .Ordinal }}
     3  {{ $height := .Get "height" | default "auto"  }}
     4  {{ $type   := .Get "type" | default "" }} 
     5  <a id="td-block-{{ .Ordinal }}" class="td-offset-anchor"></a>
     6  <section class="row td-box td-box--{{ $col_id }} td-box--gradient td-box--height-{{ $height }}">
     7  	<div class="col">
     8  		<div class="row {{ $type }}">
     9  			{{ if eq .Page.File.Ext "md" }}
    10  				{{ .Inner | markdownify }}
    11  			{{ else }}
    12  				{{ .Inner | htmlUnescape | safeHTML }}
    13  			{{ end }}
    14  		</div>
    15  	</div>
    16  </section>