nidus-sync/html/template/sync/mock/root.html
Eli Ribble f6879ac094
Organize mocks
Make mock listing automatic and dynamic
Remove mocks that are implemented in some way
Move all remaining mocks into the mocks/ directory
2026-02-16 19:52:20 +00:00

24 lines
474 B
HTML

{{ template "sync/layout/base.html" . }}
{{ define "title" }}Mock Root{{ end }}
{{ define "extraheader" }}
{{ end }}
{{ define "content" }}
<div class="container">
<h1>Mock Listing</h1>
<table class="table">
<thead>
<tr>
<th scope="col" style="min-width: 20vw">Link</th>
</tr>
</thead>
<tbody>
{{ range .Mocks }}
<tr>
<td><a href="{{ .Path }}">{{ .Path }}</a></td>
</tr>
{{ end }}
</tbody>
</table>
</div>
{{ end }}