import sources from develop/0.1.0

This commit is contained in:
Thomas Peetz
2025-04-29 12:52:55 +02:00
committed by Thomas Peetz
parent c30bdd1cd5
commit 19a5623075
670 changed files with 35977 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" class="active"><a href="/comics/comic">Comics</a></li>
<li role="presentation"><a href="/comics/publisher">Publishers</a></li>
<li role="presentation"><a href="/comics/artist">Artists</a></li>
</ul>
<div class="panel panel-default">
<table class="table">
<caption>List of Comics</caption>
<tr><th scope="col">Name</th></tr>
{{range .payload }}
<tr><td><a href="/comics/comic/view/{{.ID.Hex}}">{{.Title}}</a></td></tr>
{{end}}
</table>
<div class="panel-body">
<a href="/comics/comic/create">Add entry</a>
</div>
</div>
<!--Embed the footer.html template at this location-->
{{ template "footer.html" .}}