docs-mastodon/layouts/shortcodes/hint.html
2020-01-04 10:33:16 +01:00

5 lines
412 B
HTML

<div class="hint hint-{{ with .Get "style" }}{{.}}{{ else }}info{{ end }}">
<div class="hint-icon"><i class="fa fa-{{ if (eq (.Get "style") "warning") }}exclamation-circle{{ end }}{{ if (eq (.Get "style") "success") }}check-circle{{ end }}{{ if (eq (.Get "style") "info") }}info-circle{{ end }}{{ if (eq (.Get "style") "danger") }}exclamation-triangle{{ end }}"></i></div>
{{ .Inner | markdownify }}
</div>