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.
10 lines
290 B
HTML
10 lines
290 B
HTML
{{ $nethack_data := $.Site.Data.nethack.logfile }}
|
|
{{ $logfile := slice }}
|
|
{{ range $nethack_data }}
|
|
{{ $logfile = $logfile | append .logfile }}
|
|
{{ end }}
|
|
<ol class="nethack-logfile">
|
|
<li>
|
|
{{ partial "nethack/logentry.html" (index (sort $logfile "score" "desc") 0) }}
|
|
</li>
|
|
</ol>
|