Initial commit

This commit is contained in:
Tyler Hale 2024-01-31 15:06:47 -07:00
parent 29c198826a
commit ba13221167
Signed by: Tyler
GPG key ID: C7CC4B910D88EF96
26 changed files with 181 additions and 14 deletions

View file

@ -0,0 +1,7 @@
<!-- layouts/shortcodes/ReadDirectory.html -->
{{ $dir := .Get "dir" }}
{{ range sort (readDir (delimit (slice "static" $dir) "/")) "Name" }}
<a href="/{{ $dir }}/{{ .Name }}">{{ .Name }}</a><br>
{{ end }}