2026-02-23 10:18:34 +00:00
|
|
|
{{ $showingTrash := eq .req.Filter "deleted" }}
|
2026-02-21 23:09:34 +00:00
|
|
|
<main class="container">
|
2026-02-23 10:18:34 +00:00
|
|
|
<div class="my-4 d-flex justify-content-between align-items-baseline">
|
2026-02-21 23:09:34 +00:00
|
|
|
<a href="/sites/{{ .site.ID }}/posts/new" class="btn btn-success">New Post</a>
|
2026-02-23 10:18:34 +00:00
|
|
|
|
|
|
|
|
<div>
|
|
|
|
|
<div class="btn-group" role="group" aria-label="First group">
|
|
|
|
|
{{ if $showingTrash }}
|
|
|
|
|
<a href="/sites/{{ .site.ID }}/posts" type="button" class="btn btn-secondary" title="Trash">🗑️</a>
|
|
|
|
|
{{ else }}
|
|
|
|
|
<a href="/sites/{{ .site.ID }}/posts?filter=deleted" type="button" class="btn btn-outline-secondary" title="Trash">🗑️</a>
|
|
|
|
|
{{ end }}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2026-02-21 23:09:34 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{{ range $i, $p := .posts }}
|
2026-02-23 10:18:34 +00:00
|
|
|
<div data-controller="postlist"
|
|
|
|
|
data-postlist-site-id-value="{{ $p.SiteID }}"
|
|
|
|
|
data-postlist-post-id-value="{{ $p.ID }}"
|
|
|
|
|
data-postlist-nano-summary-value="{{ $p.NanoSummary }}">
|
|
|
|
|
<div class="my-4">
|
|
|
|
|
{{ if $p.Title }}<h4 class="mb-3">{{ $p.Title }}</h4>{{ end }}
|
|
|
|
|
{{ $p.Body | markdown }}
|
|
|
|
|
|
|
|
|
|
{{ if $showingTrash }}
|
|
|
|
|
<div class="mb-3">
|
|
|
|
|
<a href="#" data-action="click->postlist#restorePost"
|
|
|
|
|
class="link-secondary link-offset-2 link-underline link-underline-opacity-0 link-underline-opacity-75-hover">Restore</a>
|
|
|
|
|
-
|
|
|
|
|
<a href="#" data-action="click->postlist#deletePost" data-postlist-hard-delete-param="true"
|
|
|
|
|
class="link-secondary link-offset-2 link-underline link-underline-opacity-0 link-underline-opacity-75-hover">Delete</a>
|
|
|
|
|
</div>
|
|
|
|
|
{{ else }}
|
|
|
|
|
<div class="mb-3">
|
2026-02-23 10:35:12 +00:00
|
|
|
<a href="/sites/{{ $.site.ID }}/posts/{{ $p.ID }}/"
|
2026-02-23 10:18:34 +00:00
|
|
|
class="link-secondary link-offset-2 link-underline link-underline-opacity-0 link-underline-opacity-75-hover">Edit</a>
|
|
|
|
|
-
|
|
|
|
|
<a href="#" data-action="click->postlist#deletePost"
|
2026-02-23 10:35:12 +00:00
|
|
|
class="link-secondary link-offset-2 link-underline link-underline-opacity-0 link-underline-opacity-75-hover">Trash</a>
|
2026-02-23 10:18:34 +00:00
|
|
|
</div>
|
|
|
|
|
{{ end }}
|
2026-02-21 23:09:34 +00:00
|
|
|
</div>
|
2026-02-23 10:18:34 +00:00
|
|
|
{{ if lt $i (sub (len $.posts) 1) }}<hr>{{ end }}
|
2026-02-21 23:09:34 +00:00
|
|
|
</div>
|
|
|
|
|
{{ end }}
|
|
|
|
|
</main>
|