Files
fission-src/Documentation/docs-site/themes/docdock/layouts/shortcodes/panel.html
T
2017-09-08 19:13:41 -07:00

6 lines
328 B
HTML

<div class="panel {{with .Get "theme" }}panel-{{.}}{{else}}panel-primary{{end}}">
{{ with .Get "header" }}<div class="panel-heading">{{ htmlUnescape . | markdownify}}</div>{{end}}
<div class="panel-body">{{.Inner}}</div>
{{ with .Get "footer" }}<div class="panel-footer">{{ htmlUnescape . | markdownify}}</div>{{end}}
</div>