2018-09-22 03:53:29 +02:00
|
|
|
{{ define "title"}}{{ t "page.unread.title" }} {{ if gt .countUnread 0 }}({{ .countUnread }}){{ end }} {{ end }}
|
2017-11-20 06:10:04 +01:00
|
|
|
|
|
|
|
{{ define "content"}}
|
|
|
|
<section class="page-header">
|
2024-01-23 03:42:10 +01:00
|
|
|
<h1>
|
|
|
|
{{ t "page.unread.title" }}
|
|
|
|
<span aria-hidden="true">(<span class="unread-counter">{{ .countUnread }}</span>)</span>
|
|
|
|
</h1>
|
|
|
|
<span class="sr-only">{{ t "page.unread.total" }}: {{ .countUnread }}</span>
|
2017-12-02 07:55:00 +01:00
|
|
|
{{ if .entries }}
|
2024-01-23 03:42:10 +01:00
|
|
|
<nav aria-label="{{ t "page.unread.title" }} {{ t "menu.title" }}">
|
|
|
|
<ul>
|
|
|
|
<li>
|
|
|
|
<a href="#"
|
|
|
|
data-action="markPageAsRead"
|
|
|
|
data-show-only-unread="1"
|
|
|
|
data-label-question="{{ t "confirm.question" }}"
|
|
|
|
data-label-yes="{{ t "confirm.yes" }}"
|
|
|
|
data-label-no="{{ t "confirm.no" }}"
|
|
|
|
data-label-loading="{{ t "confirm.loading" }}">{{ icon "mark-page-as-read" }}{{ t "menu.mark_page_as_read" }}</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<a href="#"
|
|
|
|
data-confirm="true"
|
|
|
|
data-url="{{ route "markAllAsRead" }}"
|
|
|
|
data-redirect-url="{{ route "unread" }}"
|
|
|
|
data-label-question="{{ t "confirm.question" }}"
|
|
|
|
data-label-yes="{{ t "confirm.yes" }}"
|
|
|
|
data-label-no="{{ t "confirm.no" }}"
|
|
|
|
data-label-loading="{{ t "confirm.loading" }}">{{ icon "mark-all-as-read" }}{{ t "menu.mark_all_as_read" }}</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</nav>
|
2017-12-02 07:55:00 +01:00
|
|
|
{{ end }}
|
2017-11-20 06:10:04 +01:00
|
|
|
</section>
|
|
|
|
|
|
|
|
{{ if not .entries }}
|
2018-09-22 03:53:29 +02:00
|
|
|
<p class="alert">{{ t "alert.no_unread_entry" }}</p>
|
2017-11-20 06:10:04 +01:00
|
|
|
{{ else }}
|
2022-01-17 01:59:23 +01:00
|
|
|
<div class="pagination-top">
|
|
|
|
{{ template "pagination" .pagination }}
|
|
|
|
</div>
|
2017-11-20 06:10:04 +01:00
|
|
|
<div class="items hide-read-items">
|
|
|
|
{{ range .entries }}
|
2023-02-07 05:46:42 +01:00
|
|
|
<article role="article" class="item entry-item {{ if $.user.EntrySwipe }}entry-swipe{{ end }} item-status-{{ .Status }}" data-id="{{ .ID }}">
|
2020-06-25 06:46:37 +02:00
|
|
|
<div class="item-header" dir="auto">
|
2017-11-20 06:10:04 +01:00
|
|
|
<span class="item-title">
|
|
|
|
{{ if ne .Feed.Icon.IconID 0 }}
|
2019-09-11 06:12:38 +02:00
|
|
|
<img src="{{ route "icon" "iconID" .Feed.Icon.IconID }}" width="16" height="16" loading="lazy" alt="{{ .Feed.Title }}">
|
2017-11-20 06:10:04 +01:00
|
|
|
{{ end }}
|
2023-06-06 03:33:03 +02:00
|
|
|
<a href="{{ route "unreadEntry" "entryID" .ID }}">{{ .Title }}</a>
|
2017-11-20 06:10:04 +01:00
|
|
|
</span>
|
|
|
|
<span class="category"><a href="{{ route "categoryEntries" "categoryID" .Feed.Category.ID }}">{{ .Feed.Category.Title }}</a></span>
|
|
|
|
</div>
|
2018-04-30 02:43:40 +02:00
|
|
|
{{ template "item_meta" dict "user" $.user "entry" . "hasSaveEntry" $.hasSaveEntry }}
|
2017-11-20 06:10:04 +01:00
|
|
|
</article>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
2018-09-09 03:40:23 +02:00
|
|
|
<section class="page-footer">
|
|
|
|
{{ if .entries }}
|
|
|
|
<ul>
|
|
|
|
<li>
|
2019-07-18 02:44:32 +02:00
|
|
|
<a href="#"
|
2019-07-18 06:07:29 +02:00
|
|
|
data-action="markPageAsRead"
|
2019-07-18 02:44:32 +02:00
|
|
|
data-label-question="{{ t "confirm.question" }}"
|
|
|
|
data-label-yes="{{ t "confirm.yes" }}"
|
|
|
|
data-label-no="{{ t "confirm.no" }}"
|
2022-01-18 06:00:32 +01:00
|
|
|
data-label-loading="{{ t "confirm.loading" }}">{{ icon "mark-page-as-read" }}{{ t "menu.mark_page_as_read" }}</a>
|
2018-09-09 03:40:23 +02:00
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
{{ end }}
|
|
|
|
</section>
|
2022-01-17 01:59:23 +01:00
|
|
|
<div class="pagination-bottom">
|
|
|
|
{{ template "pagination" .pagination }}
|
|
|
|
</div>
|
2017-11-20 06:10:04 +01:00
|
|
|
{{ end }}
|
|
|
|
|
2020-09-27 16:41:04 +02:00
|
|
|
{{ end }}
|