1
0
Fork 0
miniflux/template/html/feeds.html

16 lines
425 B
HTML
Raw Normal View History

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