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.
9 lines
298 B
HTML
9 lines
298 B
HTML
{{- $logfile := partial "nethack/log.html" . -}}
|
|
{{- $logfile = where $logfile "death.cause" "ne" "quit" -}}
|
|
<ol class="nethack-logfile">
|
|
{{ range sort $logfile "end_date" "desc" -}}
|
|
<li class="nethack-logfile__entry">
|
|
{{ partial "nethack/logentry.html" .}}
|
|
</li>
|
|
{{ end }}
|
|
</ol>
|