2023-01-24 08:53:58 -08:00
|
|
|
{{- $logfile := partial "nethack/log.html" . -}}
|
2022-04-17 10:12:34 -07:00
|
|
|
<ol class="logfile">
|
2022-11-20 12:24:14 -08:00
|
|
|
{{ range sort $logfile "end_date" "desc" }}
|
2022-04-17 10:12:34 -07:00
|
|
|
{{ if ne .death.cause "quit" }}
|
2022-11-20 12:24:14 -08:00
|
|
|
<li>
|
2022-04-17 10:12:34 -07:00
|
|
|
{{ partial "nethack/logentry.html" .}}
|
|
|
|
</li>
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
2022-11-20 12:24:14 -08:00
|
|
|
</ol>
|