{{ define "title" }}{{ if .Items }}({{ len .Items }}) {{ end }}Intake{{ end }} {{ define "content" -}} <article class="center"> <span class="item-title"> <a href="/">Home</a> [<a href="?inactive=0">Active</a> | <a href="?inactive=1">All</a>] </span> </article> {{ if .Items }} {{ range .Items }} {{ template "item" . }} {{ end }} <article class="center"> <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" */}}