2026-03-18 10:42:17 +00:00
|
|
|
<main class="container">
|
|
|
|
|
<div class="my-4 d-flex justify-content-between align-items-baseline">
|
|
|
|
|
<div>
|
|
|
|
|
<a href="/sites/{{ .site.ID }}/categories/new" class="btn btn-success">New Category</a>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2026-03-21 01:01:24 +00:00
|
|
|
{{ range .categories }}
|
|
|
|
|
<table class="table">
|
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
|
|
|
|
<th>Name</th>
|
|
|
|
|
<th>Slug</th>
|
|
|
|
|
<th>Posts</th>
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
2026-03-18 10:42:17 +00:00
|
|
|
<tr>
|
|
|
|
|
<td><a href="/sites/{{ $.site.ID }}/categories/{{ .ID }}">{{ .Name }}</a></td>
|
|
|
|
|
<td><code>{{ .Slug }}</code></td>
|
|
|
|
|
<td>{{ .PostCount }}</td>
|
|
|
|
|
</tr>
|
2026-03-21 01:01:24 +00:00
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
{{ else }}
|
|
|
|
|
<div class="h4 m-3 text-center">
|
|
|
|
|
<div class="position-absolute top-50 start-50 translate-middle">📚<br>No categories yet.</div>
|
|
|
|
|
</div>
|
|
|
|
|
{{ end }}
|
2026-03-18 10:42:17 +00:00
|
|
|
</main>
|