You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

12 lines
376 B

{{ define "challenges" }}
<div id="challenge-container">
<h2 class="sidebar-title">Challenges</h2>
<ul class="challenge-list">
{{range .Levels}}
<li class="challenge-item {{if eq .ID $.Level.ID}}active{{end}}">
<div class="challenge-name"><a href="/play/{{.ID}}">{{.Name}}</a></div>
</li>
{{end}}
</ul>
</div>
{{ end }}