redstrate.com/themes/retro/layouts/shortcodes/recent-changes.html

9 lines
204 B
HTML
Raw Normal View History

2023-07-04 21:14:10 -04:00
<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>