themes/hugo-coder/layouts/shortcodes/notice.html
784142aa900b4dc5849b1bf8f761cbc6b129da42
· 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> |