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

7 lines
223 B
HTML

{{- $n := .Get 0 -}}
{{- $logfile := partial "nethack/log.html" . -}}
<ol class="logfile topn">
{{ range first $n (sort $logfile "score" "desc") -}}
<li>{{ partial "nethack/logentry.html" . }}</li>
{{- end }}
</ol>