14 lines
		
	
	
		
			No EOL
		
	
	
		
			362 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			No EOL
		
	
	
		
			362 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{ $nethack_data := $.Site.Data.nethack.logfile }}
 | 
						|
{{ $logfile := slice }}
 | 
						|
{{ range $nethack_data }}
 | 
						|
  {{ $logfile = $logfile | append .logfile }}
 | 
						|
{{ end }}
 | 
						|
<ol class="logfile">
 | 
						|
  {{ range sort $logfile "end_date" "desc" }}
 | 
						|
  {{ if ne .death.cause "quit" }}
 | 
						|
  <li class="logentry">
 | 
						|
    {{ partial "nethack/logentry.html" .}}
 | 
						|
  </li>
 | 
						|
  {{ end }}
 | 
						|
  {{ end }}
 | 
						|
</ol> |