alert.html 461 B

12345678910111213141516
  1. {{ $type := .Get "type"}}
  2. {{ $icon := "alert-circle"}}
  3. {{ if eq $type "success" }}
  4. {{ $icon = "check-circle"}}
  5. {{ else if eq $type "warning" }}
  6. {{ $icon = "alert-triangle"}}
  7. {{ else if eq $type "danger" }}
  8. {{ $icon = "alert-octagon"}}
  9. {{ else if eq $type "info" }}
  10. {{ $icon = "info"}}
  11. {{ end }}
  12. <div class="alert {{ $type }}">
  13. <span><i data-feather="{{$icon}}"></i></span>
  14. <span><strong>{{.Inner | markdownify }}</strong></span>
  15. </div>