blogamore/layouts/shortcodes/bootstrap-table.html

7 lines
324 B
HTML
Raw Normal View History

<!-- Ermittle Parameter -->
{{ $htmlTable := .Inner | markdownify }}
{{ $table_class := .Get "table_class" | default "table table-hover" }}
{{ $thead_class := .Get "thead_class" | default "table-dark" }}
{{- partial "shortcodes/table" (dict "content" $htmlTable "table_class" $table_class "thead_class" $thead_class) -}}