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

10 lines
No EOL
274 B
HTML

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