AnthoLume/templates/pages/admin-logs.tmpl
Evan Reichard 45cef2f4af
All checks were successful
continuous-integration/drone/push Build is passing
chore(formatting): djlint templates
2024-01-24 21:40:14 -05:00

12 lines
383 B
Cheetah

{{ template "base" . }}
{{ define "title" }}Admin - Logs{{ end }}
{{ define "header" }}<a class="whitespace-pre" href="../admin">Admin - Logs</a>{{ end }}
{{ define "content" }}
<div class="flex flex-col-reverse text-black dark:text-white"
style="font-family: monospace">
{{ range $log := .Data }}
<span class="whitespace-pre">{{ $log }}</span>
{{ end }}
</div>
{{ end }}