Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
365 B
HTML
Raw Permalink Normal View History

{{ $type := default "info" .type }}
{{ $icon := "info-circle" }}
{{ if eq $type "warning" }}
{{ $icon = "exclamation-triangle" }}
{{ end }}
<div class="note note-{{ $type }}">
<div class="icon-and-line">
<i class="fas fa-{{ $icon }}"></i>
<div class="line"></div>
</div>
<div class="content">
{{ .text }}
</div>
</div>