notice.html 579 B

123456789101112
  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>