intake/web/html/feed.html

33 lines
680 B
HTML
Raw Normal View History

{{ define "title" }}{{ if .Items }}({{ len .Items }}) {{ end }}Intake{{ end }}
2025-01-28 01:05:20 +00:00
{{ define "content" -}}
<article class="center">
<span class="item-title">
2025-01-28 05:08:33 +00:00
<a href="/">Home</a>
2025-01-28 01:05:20 +00:00
[<a href="#">Active</a> | <a href="#">All</a>]
</span>
</article>
{{ if .Items }}
{{ range .Items }}
{{ template "item" . }}
{{ end }}
<article class="center">
2025-01-30 06:21:17 +00:00
<button
hx-post="/mass-deactivate"
hx-vals='{{ massDeacVars .Items }}'
hx-confirm="Deactivate {{ len .Items }} items?"
>Deactivate All</button>
</article>
{{ else }}
<article class="center">
<span class="item-title">Feed is empty</span>
</article>
{{ end }}
{{/* end if .Items */}}
{{ end }}
{{/* end define "content" */}}