themes/hugo-coder/layouts/shortcodes/notice.html

b98966e4666a527b281aab7b4a0de9886e12b257 · 579 B · 12 lines raw

1 {{- $type := .Get 0 -}}
2 {{- $title := .Get 1 | default $type -}}
3 {{- $inner := .Inner | .Page.RenderString | chomp -}}
4 {{- $icon := dict "note" "fa-sticky-note" "tip" "fa-lightbulb-o" "example" "fa-file-text" "question" "fa-question" "info" "fa-exclamation-circle" "warning" "fa-exclamation-triangle" "error" "fa-times-circle" -}}
5 <div class="notice {{ $type }}">
6 <div class="notice-title">
7 <i class="fa {{ index $icon $type }}" aria-hidden="true"></i>{{ i18n $title | default $title | humanize }}
8 </div>
9 <div class="notice-content">
10 {{- $inner -}}
11 </div>
12 </div>