13 lines
411 B
HTML
13 lines
411 B
HTML
<div class="alert alert-warning d-flex" role="alert">
|
|
<div class="flex-shrink-1 alert-icon">{{ with .Get "icon" }}{{.}} {{ end }}</div>
|
|
{{ with .Get "text"}}
|
|
<div class="w-100">{{ . | safeHTML }} </div>
|
|
{{ else }}
|
|
{{ with .Inner}}
|
|
<div class="w-100"> {{ . | markdownify}}</div>
|
|
{{ else }}
|
|
{{ errorf "No valid text variable or Inner content given"}}
|
|
{{ end }}
|
|
{{ end}}
|
|
</div>
|