2017-11-20 00:10:04 -05:00
|
|
|
{{ define "title"}}{{ .feed.Title }} ({{ .total }}){{ end }}
|
|
|
|
|
|
|
|
{{ define "content"}}
|
|
|
|
<section class="page-header">
|
|
|
|
<h1>{{ .feed.Title }} ({{ .total }})</h1>
|
|
|
|
<ul>
|
2018-09-08 21:40:23 -04:00
|
|
|
{{ if .entries }}
|
2017-11-20 00:10:04 -05:00
|
|
|
<li>
|
2018-09-08 21:40:23 -04:00
|
|
|
<a href="#" data-on-click="markPageAsRead">{{ t "Mark this page as read" }}</a>
|
2017-11-20 00:10:04 -05:00
|
|
|
</li>
|
2018-09-08 21:40:23 -04:00
|
|
|
{{ end }}
|
2017-11-20 00:10:04 -05:00
|
|
|
<li>
|
2018-09-08 21:40:23 -04:00
|
|
|
<a href="{{ route "refreshFeed" "feedID" .feed.ID }}">{{ t "Refresh" }}</a>
|
2017-11-20 00:10:04 -05:00
|
|
|
</li>
|
|
|
|
<li>
|
2018-09-08 21:40:23 -04:00
|
|
|
<a href="{{ route "editFeed" "feedID" .feed.ID }}">{{ t "Edit" }}</a>
|
2017-11-20 00:10:04 -05:00
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
{{ if ne .feed.ParsingErrorCount 0 }}
|
|
|
|
<div class="alert alert-error">
|
|
|
|
<h3>{{ t "There is a problem with this feed" }}</h3>
|
2018-01-04 21:32:36 -05:00
|
|
|
<p>{{ t .feed.ParsingErrorMsg }}</p>
|
2017-11-20 00:10:04 -05:00
|
|
|
</div>
|
|
|
|
{{ else if not .entries }}
|
|
|
|
<p class="alert">{{ t "There is no article for this feed." }}</p>
|
|
|
|
{{ else }}
|
|
|
|
<div class="items">
|
|
|
|
{{ range .entries }}
|
2017-12-02 18:01:05 -05:00
|
|
|
<article class="item touch-item item-status-{{ .Status }}" data-id="{{ .ID }}">
|
2017-11-20 00:10:04 -05:00
|
|
|
<div class="item-header">
|
|
|
|
<span class="item-title">
|
|
|
|
{{ if ne .Feed.Icon.IconID 0 }}
|
2018-07-11 02:20:32 -04:00
|
|
|
<img src="{{ route "icon" "iconID" .Feed.Icon.IconID }}" width="16" height="16" alt="{{ .Feed.Title }}">
|
2017-11-20 00:10:04 -05:00
|
|
|
{{ end }}
|
|
|
|
<a href="{{ route "feedEntry" "feedID" .Feed.ID "entryID" .ID }}">{{ .Title }}</a>
|
|
|
|
</span>
|
|
|
|
<span class="category"><a href="{{ route "categoryEntries" "categoryID" .Feed.Category.ID }}">{{ .Feed.Category.Title }}</a></span>
|
|
|
|
</div>
|
2018-04-29 20:43:40 -04:00
|
|
|
{{ template "item_meta" dict "user" $.user "entry" . "hasSaveEntry" $.hasSaveEntry }}
|
2017-11-20 00:10:04 -05:00
|
|
|
</article>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
2018-09-08 21:40:23 -04:00
|
|
|
<section class="page-footer">
|
|
|
|
{{ if .entries }}
|
|
|
|
<ul>
|
|
|
|
<li>
|
|
|
|
<a href="#" data-on-click="markPageAsRead">{{ t "Mark this page as read" }}</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
{{ end }}
|
|
|
|
</section>
|
2017-11-20 00:10:04 -05:00
|
|
|
{{ template "pagination" .pagination }}
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ end }}
|