40 lines
702 B
HTML
40 lines
702 B
HTML
{{ define "title" }}Intake{{ end }}
|
|
|
|
{{ define "content" -}}
|
|
<article>
|
|
<details open>
|
|
<summary><span class="item-title">Channels</span></summary>
|
|
{{ if .Channels }}
|
|
{{ range .Channels }}
|
|
<p><a href="/channel/{{ .Name }}">
|
|
{{ if .Active }}
|
|
{{ .Name }} ({{ .Active }})
|
|
{{ else }}
|
|
{{ .Name }}
|
|
{{ end }}
|
|
</a></p>
|
|
{{ end }}
|
|
{{ else }}
|
|
<p>No channels found.</p>
|
|
{{ end }}
|
|
</details>
|
|
</article>
|
|
|
|
<article>
|
|
<details>
|
|
<summary><span class="item-title">Sources</span></summary>
|
|
{{ if .Sources }}
|
|
<table class="intake-sources">
|
|
{{ range .Sources }}
|
|
<tr>
|
|
<td><a href="/source/{{ .Name }}">{{ .Name }}</a></td>
|
|
</tr>
|
|
{{ end }}
|
|
</table>
|
|
{{ else }}
|
|
<p>No sources found.</p>
|
|
{{ end }}
|
|
</details>
|
|
</article>
|
|
{{- end }}
|