2025-01-25 05:27:26 +00:00
|
|
|
{{ 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">
|
|
|
|
<a href="#">Home</a>
|
|
|
|
[<a href="#">Active</a> | <a href="#">All</a>]
|
|
|
|
</span>
|
|
|
|
</article>
|
|
|
|
|
|
|
|
{{ if .Items }}
|
|
|
|
{{ range .Items }}
|
|
|
|
{{ template "item" . }}
|
|
|
|
{{ end }}
|
2025-01-25 05:27:26 +00:00
|
|
|
|
|
|
|
<article class="center">
|
|
|
|
<button>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" */}}
|