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-04-24 17:16:18 -07:00
|
|
|
{{ range sort $logfile "end_date" "desc" }}
|
2022-04-17 10:12:34 -07:00
|
|
|
{{ if ne .death.cause "quit" }}
|
|
|
|
<li class="logentry">
|
|
|
|
{{ partial "nethack/logentry.html" .}}
|
|
|
|
</li>
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
</ol>
|