2021-04-20 00:37:26 -07:00
|
|
|
{{ $type := default "info" (.Get "type") }}
|
|
|
|
{{ $icon := "info-circle" }}
|
|
|
|
|
|
|
|
{{ if eq $type "warning" }}
|
|
|
|
{{ $icon = "exclamation-triangle" }}
|
|
|
|
{{ end }}
|
|
|
|
|
2022-06-01 10:58:20 -07:00
|
|
|
|
2023-05-18 11:36:01 -07:00
|
|
|
<div class="note note-{{ $type }}">
|
|
|
|
<div class="icon-and-line">
|
|
|
|
<i class="fas fa-{{ $icon }}"></i>
|
|
|
|
<div class="line"></div>
|
2021-04-20 00:37:26 -07:00
|
|
|
</div>
|
2023-05-18 11:36:01 -07:00
|
|
|
<div class="content">
|
2020-06-10 21:28:23 +00:00
|
|
|
{{- .Inner | markdownify -}}
|
2021-04-20 00:37:26 -07:00
|
|
|
</div>
|
2019-08-29 14:09:44 -07:00
|
|
|
</div>
|