import other kontor repos into directories

This commit is contained in:
Thomas Peetz
2025-01-09 19:28:50 +01:00
committed by Thomas Peetz
parent 28746adfbb
commit b424e95e05
319 changed files with 17211 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
<!--comics.html-->
{{ template "header.html" .}}
{{ template "comics/menu.html" .}}
<ul class="nav nav-tabs">
<li role="presentation"><a href="/comics/comic">Comics</a></li>
<li role="presentation"><a href="/comics/publisher">Publishers</a></li>
<li role="presentation" class="active"><a href="/comics/artist">Artists</a></li>
</ul>
<div class="panel panel-default">
<table class="table">
<caption>Comic Artists</caption>
<tr><th scope="col">Name</th></tr>
{{range .payload }}
<tr><td><a href="/comics/artist/view/{{.ID.Hex}}">{{.Name}}</a></td></tr>
{{end}}
</table>
<div class="panel-body">
<a href="/comics/artist/create">Add entry</a>
</div>
</div>
<!--Embed the footer.html template at this location-->
{{ template "footer.html" .}}