Merge pull request #235 from OCram85/featureAlert

 Uses inline shortcode in alerts for large texts
This commit is contained in:
Henk Verlinde 2021-04-20 09:27:33 +02:00 committed by GitHub
commit 60741d0cab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 3 deletions

View File

@ -1,4 +1,12 @@
<div class="alert alert-warning d-flex" role="alert">
<div class="flex-shrink-1 alert-icon">{{ with .Get "icon" }}{{.}}{{ end }}</div>
<div class="w-100">{{ with .Get "text" }}{{ . | safeHTML }}{{ end }}</div>
</div>
<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>