Omphaloskepsis-2/layouts/partials/single/main-header/notes.html

17 lines
272 B
HTML
Raw Permalink Normal View History

{{- /*
Renders the notes for an item.
@params note The notes for an item.
@params sc Site context.
*/
-}}
<aside class="article-header__notes">
<ul>
{{ range .notes }}
<li>{{ . | $.sc.RenderString | safeHTML }}</li>
{{ end }}
</ul>
</aside>