2022-04-24 17:27:13 -07:00
|
|
|
{{ $nethack_data := $.Site.Data.nethack.logfile }}
|
|
|
|
{{ $logfile := slice }}
|
|
|
|
{{ range $nethack_data }}
|
|
|
|
{{ $logfile = $logfile | append .logfile }}
|
|
|
|
{{ end }}
|
2024-10-27 09:56:46 -06:00
|
|
|
<ol class="nethack-logfile">
|
2022-11-20 12:24:14 -08:00
|
|
|
<li>
|
2022-04-24 17:27:13 -07:00
|
|
|
{{ partial "nethack/logentry.html" (index (sort $logfile "score" "desc") 0) }}
|
2022-11-20 12:24:14 -08:00
|
|
|
</li>
|
|
|
|
</ol>
|