2022-04-24 17:16:18 -07:00
|
|
|
{{ $nethack_data := $.Site.Data.nethack.logfile }}
|
|
|
|
{{ $logfile := slice }}
|
|
|
|
{{ range $nethack_data }}
|
|
|
|
{{ $logfile = $logfile | append .logfile }}
|
|
|
|
{{ end }}
|
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>
|