Update all the CSS classes and fix the layout so it looks good in the new theme. Convert a bunch of CSS classes to BEM style.
7 lines
265 B
HTML
7 lines
265 B
HTML
{{- $n := .Get 0 -}}
|
|
{{- $logfile := partial "nethack/log.html" . -}}
|
|
<ol class="nethack-logfile nethack-topn">
|
|
{{ range first $n (sort $logfile "score" "desc") -}}
|
|
<li class="nethack-logentry">{{ partial "nethack/logentry.html" . }}</li>
|
|
{{- end }}
|
|
</ol>
|