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

10 lines
238 B
HTML

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