mirror of
https://github.com/Aroy-Art/Rinkusu.git
synced 2024-12-27 05:44:23 +01:00
13 lines
No EOL
547 B
HTML
13 lines
No EOL
547 B
HTML
<div class="alert {{ with .Get "theme" }}alert-{{.}}{{ end }}" role="alert" data-dir="{{ with .Get "dir" }}{{.}}{{ else }}ltr{{ end }}">
|
|
|
|
{{ $alert := .Get "theme" }}
|
|
{{ if findRE "info" $alert }}
|
|
<i class="nf nf-fa-info_circle" style="font-size: 28px;"></i>
|
|
{{ else if findRE "warning" $alert }}
|
|
<i class="nf nf-fa-warning" style="font-size: 28px;"></i>
|
|
{{ else if findRE "danger" $alert }}
|
|
<i class="nf nf-oct-stop" style="font-size: 28px;"></i>
|
|
{{ end }}
|
|
|
|
{{ .Inner | markdownify }}
|
|
</div> |