miniflux-v2/template/templates/views/feeds.html

16 lines
425 B
HTML
Raw Normal View History

{{ define "title"}}{{ t "page.feeds.title" }} ({{ .total }}){{ end }}
2017-11-20 06:10:04 +01:00
{{ define "content"}}
<section class="page-header">
<h1>{{ t "page.feeds.title" }} ({{ .total }})</h1>
2020-01-02 22:03:34 +01:00
{{ template "feed_menu" }}
2017-11-20 06:10:04 +01:00
</section>
{{ if not .feeds }}
<p class="alert">{{ t "alert.no_feed" }}</p>
2017-11-20 06:10:04 +01:00
{{ else }}
2019-11-18 04:44:12 +01:00
{{ template "feed_list" dict "user" .user "feeds" .feeds "ParsingErrorCount" .ParsingErrorCount }}
2017-11-20 06:10:04 +01:00
{{ end }}
{{ end }}