Welcome to mirror list, hosted at ThFree Co, Russian Federation.

panel.html « shortcodes « layouts - github.com/thingsym/hugo-theme-techdoc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 51f7b623f3dda06488e27ebbab8373972d12bb73 (plain)
1
2
3
4
5
6
7
8
9
10
<div class="panel {{ with .Get "status" }}panel-{{ . }}{{ else }}panel-primary{{ end }}">
{{- with .Get "title" -}}
<div class="panel-header">
<h3>{{ if $.Get "icon" }}<i class="{{ $.Get "icon" }}"></i>&nbsp;{{ end }}{{- htmlUnescape . | markdownify -}}</h3>
</div>
{{- end -}}
<div class="panel-body">
{{.Inner}}
</div>
</div>