fime/themes/ace-documentation/layouts/shortcodes/panel.html

15 lines
508 B
HTML
Raw Normal View History

2022-09-28 19:20:15 +00:00
{{ $style := .Get "style"}}
<div class="card my-3 border-top-0 border-right-0 border-bottom-0 border-left border-{{ $style }} rounded" style="border-width:4px !important;">
<div class="wrap border border-left-0 rounded">
{{ with .Get "title" }}
<div class="card-header border-0 bg-white pl-3 text-{{ $style }}">
<h3>{{.}}</h3>
</div>
{{ end }}
<div class="card-body pt-1">
{{ print .Inner | markdownify }}
</div>
</div>
</div>