1
1
mirror of https://github.com/privacyguides/privacyguides.org.git synced 2026-05-19 09:51:20 +00:00
Files
privacyguides.org/layouts/_shortcodes/last-edited.html
T

12 lines
315 B
HTML

<ul>
{{ $path := .Get 0 | default "/wiki/advanced" }}
{{ with site.GetPage $path }}
{{ range (.RegularPages.ByLastmod.Reverse | first 6) }}
<li>
<a href="{{ .Permalink }}">{{ .Title }}</a>
<small> {{ .Lastmod.Format "Jan 2, 2006" }}</small>
</li>
{{ end }}
{{ end }}
</ul>