aboutsummaryrefslogtreecommitdiffhomepage
path: root/template/html/feeds.html
blob: fa9d8adbbcce85a0ec65048fe8d082775c44e959 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{{ define "title"}}{{ t "page.feeds.title" }} ({{ .total }}){{ end }}

{{ define "content"}}
<section class="page-header">
    <h1>{{ t "page.feeds.title" }} ({{ .total }})</h1>
    {{ template "feed_menu" }}
</section>

{{ if not .feeds }}
    <p class="alert">{{ t "alert.no_feed" }}</p>
{{ else }}
    {{ template "feed_list" dict "user" .user "feeds" .feeds "ParsingErrorCount" .ParsingErrorCount }}
{{ end }}

{{ end }}