erynwells.me/layouts/shortcodes/nethack/best_game.html

11 lines
290 B
HTML
Raw Normal View History

2022-04-24 17:27:13 -07:00
{{ $nethack_data := $.Site.Data.nethack.logfile }}
{{ $logfile := slice }}
{{ range $nethack_data }}
{{ $logfile = $logfile | append .logfile }}
{{ end }}
<ol class="nethack-logfile">
<li>
2022-04-24 17:27:13 -07:00
{{ partial "nethack/logentry.html" (index (sort $logfile "score" "desc") 0) }}
</li>
</ol>