Files
Servo/docs/tmpl/toc.partial.tmpl
Eric Bower 0c4f193f7d feat: docs site (#286)
* feat: docs site

* docs: copy

* chore(docs): update cli post

* revert

* chore: go.mod
2024-01-29 10:17:13 -05:00

15 lines
286 B
Cheetah

{{define "toc"}}
<div>
{{range $key, $value := .SitemapByTag}}
<div class="box my">
<h2 class="text-xl">{{$key}}</h2>
<ul>
{{range $value}}
<li><a href="{{.GenHref}}">{{.Text}}</a></li>
{{end}}
</ul>
</div>
{{end}}
</div>
{{end}}