2024-10-15 08:09:14 +00:00
|
|
|
{{- $type := or .type "note" }}
|
|
|
|
{{- $title := .title }}
|
|
|
|
{{- $text := .text }}
|
|
|
|
{{ "<!-- alert block -->" | safeHTML }}
|
|
|
|
<aside class="admonition"{{ with $type }} data-type="{{.}}"{{end}}>
|
|
|
|
{{- with $title }}
|
2024-11-09 20:12:57 +00:00
|
|
|
<header class="admonition-header">
|
2024-10-15 08:09:14 +00:00
|
|
|
<p class="admonition__title" aria-hidden="true">{{.}}</p>
|
|
|
|
</header>
|
2024-11-09 20:12:57 +00:00
|
|
|
{{- end }}
|
2024-10-15 08:09:14 +00:00
|
|
|
{{- with $text }}
|
|
|
|
<div class="admonition__text">
|
|
|
|
{{ . }}
|
|
|
|
</div>
|
|
|
|
{{- end }}
|
|
|
|
</aside>
|
|
|
|
{{ "<!-- end alert block -->" | safeHTML }}
|