bovarys.me/fudge@v0.4.0/template/home.html (about) 1 {{ define "content" }} 2 <h2>Repositories</h2> 3 4 {{ if .Names }} 5 <ul class="list-spaced"> 6 {{ range .Names }} 7 <li> 8 <p><a href="{{ . }}">{{ . }}</a></p> 9 10 {{ $description := index $.Descriptions . }} 11 {{ if eq $description "" }} 12 <p><em>No description.</em></p> 13 {{ else }} 14 <p>{{ $description }}</p> 15 {{ end }} 16 </li> 17 {{ end }} 18 </ul> 19 {{ end }} 20 {{ end }}