erynwells.me/layouts/shortcodes/nethack/logfile.html

10 lines
298 B
HTML
Raw Normal View History

{{- $logfile := partial "nethack/log.html" . -}}
{{- $logfile = where $logfile "death.cause" "ne" "quit" -}}
<ol class="nethack-logfile">
{{ range sort $logfile "end_date" "desc" -}}
<li class="nethack-logfile__entry">
{{ partial "nethack/logentry.html" .}}
</li>
{{ end }}
</ol>