aboutsummaryrefslogtreecommitdiffhomepage
path: root/template/html/feeds.html
diff options
context:
space:
mode:
authorGravatar Frédéric Guillot <fred@miniflux.net>2018-01-02 22:04:48 -0800
committerGravatar Frédéric Guillot <fred@miniflux.net>2018-01-02 22:04:48 -0800
commit320d1b016747ba4501da9417d9ce5f99368a5768 (patch)
tree1054d96afde6022951b76cc4a09b78e1e3f05058 /template/html/feeds.html
parentc39f2e1a8d2de6d412bcc673d29eb0f7a2d1f5f7 (diff)
Refactor packages to have more idiomatic code base
Diffstat (limited to 'template/html/feeds.html')
-rw-r--r--template/html/feeds.html77
1 files changed, 77 insertions, 0 deletions
diff --git a/template/html/feeds.html b/template/html/feeds.html
new file mode 100644
index 0000000..5500c92
--- /dev/null
+++ b/template/html/feeds.html
@@ -0,0 +1,77 @@
+{{ define "title"}}{{ t "Feeds" }} ({{ .total }}){{ end }}
+
+{{ define "content"}}
+<section class="page-header">
+ <h1>{{ t "Feeds" }} ({{ .total }})</h1>
+ <ul>
+ <li>
+ <a href="{{ route "addSubscription" }}">{{ t "Add subscription" }}</a>
+ </li>
+ <li>
+ <a href="{{ route "export" }}">{{ t "Export" }}</a>
+ </li>
+ <li>
+ <a href="{{ route "import" }}">{{ t "Import" }}</a>
+ </li>
+ <li>
+ <a href="{{ route "refreshAllFeeds" }}">{{ t "Refresh all feeds in background" }}</a>
+ </li>
+ </ul>
+</section>
+
+{{ if not .feeds }}
+ <p class="alert">{{ t "You don't have any subscription." }}</p>
+{{ else }}
+ <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">
+ {{ end }}
+ <a href="{{ route "feedEntries" "feedID" .ID }}">{{ .Title }}</a>
+ </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 }}" target="_blank" rel="noopener noreferrer" referrerpolicy="no-referrer" data-original-link="true">{{ domain .SiteURL }}</a>
+ </li>
+ <li>
+ {{ t "Last check:" }} <time datetime="{{ isodate .CheckedAt }}" title="{{ isodate .CheckedAt }}">{{ elapsed .CheckedAt }}</time>
+ </li>
+ </ul>
+ <ul>
+ <li>
+ <a href="{{ route "refreshFeed" "feedID" .ID }}">{{ t "Refresh" }}</a>
+ </li>
+ <li>
+ <a href="{{ route "editFeed" "feedID" .ID }}">{{ t "Edit" }}</a>
+ </li>
+ <li>
+ <a href="#"
+ data-confirm="true"
+ data-label-question="{{ t "Are you sure?" }}"
+ data-label-yes="{{ t "yes" }}"
+ data-label-no="{{ t "no" }}"
+ data-label-loading="{{ t "Work in progress..." }}"
+ data-url="{{ route "removeFeed" "feedID" .ID }}">{{ t "Remove" }}</a>
+ </li>
+ </ul>
+ </div>
+ {{ if ne .ParsingErrorCount 0 }}
+ <div class="parsing-error">
+ <strong title="{{ .ParsingErrorMsg }}" class="parsing-error-count">{{ plural "plural.feed.error_count" .ParsingErrorCount .ParsingErrorCount }}</strong>
+ <small class="parsing-error-message">({{ .ParsingErrorMsg }})</small>
+ </div>
+ {{ end }}
+ </article>
+ {{ end }}
+ </div>
+{{ end }}
+
+{{ end }}