aboutsummaryrefslogtreecommitdiffhomepage
path: root/template/html/common/feed_list.html
diff options
context:
space:
mode:
Diffstat (limited to 'template/html/common/feed_list.html')
-rw-r--r--template/html/common/feed_list.html56
1 files changed, 56 insertions, 0 deletions
diff --git a/template/html/common/feed_list.html b/template/html/common/feed_list.html
new file mode 100644
index 0000000..cb80a1f
--- /dev/null
+++ b/template/html/common/feed_list.html
@@ -0,0 +1,56 @@
+{{ define "feed_list" }}
+ <div class="items">
+ {{ range .feeds }}
+ <article class="item {{ if ne .ParsingErrorCount 0 }}feed-parsing-error{{ end }}">
+ <div class="item-header">
+ <span class="item-title">
+ {{ if .Icon }}
+ <img src="{{ route "icon" "iconID" .Icon.IconID }}" width="16" height="16" loading="lazy" alt="{{ .Title }}">
+ {{ end }}
+ {{ if .Disabled }} 🚫 {{ end }}
+ <a href="{{ route "feedEntries" "feedID" .ID }}">{{ .Title }}</a>
+ </span>
+ <span class="feed-entries-counter">
+ (<span title="{{ t "page.feeds.unread_counter" }}">{{ .UnreadCount }}</span>/<span title="{{ t "page.feeds.read_counter" }}">{{ .ReadCount }}</span>)
+ </span>
+ <span class="category">
+ <a href="{{ route "categoryEntries" "categoryID" .Category.ID }}">{{ .Category.Title }}</a>
+ </span>
+ </div>
+ <div class="item-meta">
+ <ul>
+ <li>
+ <a href="{{ .SiteURL }}" title="{{ .SiteURL }}" target="_blank" rel="noopener noreferrer" referrerpolicy="no-referrer" data-original-link="true">{{ domain .SiteURL }}</a>
+ </li>
+ <li>
+ {{ t "page.feeds.last_check" }} <time datetime="{{ isodate .CheckedAt }}" title="{{ isodate .CheckedAt }}">{{ elapsed $.user.Timezone .CheckedAt }}</time>
+ </li>
+ </ul>
+ <ul>
+ <li>
+ <a href="{{ route "refreshFeed" "feedID" .ID }}">{{ t "menu.refresh_feed" }}</a>
+ </li>
+ <li>
+ <a href="{{ route "editFeed" "feedID" .ID }}">{{ t "menu.edit_feed" }}</a>
+ </li>
+ <li>
+ <a href="#"
+ data-confirm="true"
+ data-label-question="{{ t "confirm.question" }}"
+ data-label-yes="{{ t "confirm.yes" }}"
+ data-label-no="{{ t "confirm.no" }}"
+ data-label-loading="{{ t "confirm.loading" }}"
+ data-url="{{ route "removeFeed" "feedID" .ID }}">{{ t "action.remove" }}</a>
+ </li>
+ </ul>
+ </div>
+ {{ if ne .ParsingErrorCount 0 }}
+ <div class="parsing-error">
+ <strong title="{{ .ParsingErrorMsg }}" class="parsing-error-count">{{ plural "page.feeds.error_count" .ParsingErrorCount .ParsingErrorCount }}</strong>
+ - <small class="parsing-error-message">{{ .ParsingErrorMsg }}</small>
+ </div>
+ {{ end }}
+ </article>
+ {{ end }}
+ </div>
+{{ end }} \ No newline at end of file