intake/web/html/home.html

21 lines
374 B
HTML
Raw Permalink Normal View History

2025-01-24 15:15:54 +00:00
{{ define "title" }}Intake{{ end }}
{{ define "content" -}}
<article>
<details>
<summary><span class="item-title">Sources</span></summary>
{{ if .Sources }}
<table class="intake-sources">
{{ range .Sources }}
<tr>
2025-01-28 05:08:33 +00:00
<td><a href="/source/{{ .Name }}">{{ .Name }}</a></td>
2025-01-24 15:15:54 +00:00
</tr>
{{ end }}
</table>
{{ else }}
<p>No sources found.</p>
{{ end }}
</details>
</article>
{{- end }}