8 lines
No EOL
269 B
HTML
8 lines
No EOL
269 B
HTML
{{ $nethack_data := $.Site.Data.nethack.logfile }}
|
|
{{ $logfile := slice }}
|
|
{{ range $nethack_data }}
|
|
{{ $logfile = $logfile | append .logfile }}
|
|
{{ end }}
|
|
<div class="logentry">
|
|
{{ partial "nethack/logentry.html" (index (sort $logfile "score" "desc") 0) }}
|
|
</div> |