forked from tangled.org/core
this repo has no description
1<html> 2 {{ template "layouts/head" . }} 3 4 <header> 5 <h1>{{ .meta.Title }}</h1> 6 <h2>{{ .meta.Description }}</h2> 7 </header> 8 <body> 9 <main> 10 <div class="index"> 11 {{ range .info }} 12 <div class="index-name"> 13 <a href="/{{ .Name }}">{{ .DisplayName }}</a> 14 </div> 15 <div class="desc">{{ .Desc }}</div> 16 <div>{{ .Idle }}</div> 17 {{ end }} 18 </div> 19 </main> 20 </body> 21</html>