redstrate.com/themes/retro/layouts/shortcodes/recent-changes.html
2023-07-04 21:14:10 -04:00

8 lines
204 B
HTML

<ul style="padding: 0">
{{ $changes := (index site.Data "recent-changes") }}
{{ range $changes.changes }}
<li style="margin-left: 10px; list-style-type: square;">
<p>{{ . }}</p>
</li>
{{ end }}
</ul>