| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- {{ define "title"}}{{ .category.Title }} ({{ .total }}){{ end }}
- {{ define "page_header"}}
- <section class="page-header" aria-labelledby="page-header-title">
- <h1 id="page-header-title" dir="auto">
- {{ .category.Title }}
- <span aria-hidden="true">({{ .total }})</span>
- </h1>
- <span class="sr-only">
- {{ if .showOnlyUnreadEntries }}
- {{ plural "page.unread_entry_count" .total .total }}
- {{ else }}
- {{ plural "page.total_entry_count" .total .total }}
- {{ end }}
- </span>
- <nav aria-label="{{ .category.Title }} {{ t "menu.title" }}">
- <ul>
- {{ if .entries }}
- <li>
- <button
- class="page-button"
- data-action="markPageAsRead"
- 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-show-only-unread="{{ if .showOnlyUnreadEntries }}1{{ end }}">{{ icon "mark-page-as-read" }}{{ t "menu.mark_page_as_read" }}</button>
- </li>
- <li>
- <button
- class="page-button"
- 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="{{ routePath "/category/%d/mark-all-as-read" .category.ID }}">{{ icon "mark-all-as-read" }}{{ t "menu.mark_all_as_read" }}</button>
- </li>
- {{ end }}
- {{ if .showOnlyUnreadEntries }}
- <li>
- <a class="page-link" href="{{ routePath "/category/%d/entries/all" .category.ID }}">{{ icon "show-all-entries" }}{{ t "menu.show_all_entries" }}</a>
- </li>
- <li>
- <a class="page-link" href="{{ routePath "/category/%d/entries/starred" .category.ID }}">{{ icon "star" }}{{ t "menu.show_only_starred_entries" }}</a>
- </li>
- {{ else if .showOnlyStarredEntries }}
- <li>
- <a class="page-link" href="{{ routePath "/category/%d/entries" .category.ID }}">{{ icon "show-unread-entries" }}{{ t "menu.show_only_unread_entries" }}</a>
- </li>
- <li>
- <a class="page-link" href="{{ routePath "/category/%d/entries/all" .category.ID }}">{{ icon "show-all-entries" }}{{ t "menu.show_all_entries" }}</a>
- </li>
- {{ else }}
- <li>
- <a class="page-link" href="{{ routePath "/category/%d/entries" .category.ID }}">{{ icon "show-unread-entries" }}{{ t "menu.show_only_unread_entries" }}</a>
- </li>
- <li>
- <a class="page-link" href="{{ routePath "/category/%d/entries/starred" .category.ID }}">{{ icon "star" }}{{ t "menu.show_only_starred_entries" }}</a>
- </li>
- {{ end }}
- <li>
- <a class="page-link" href="{{ routePath "/category/%d/feeds" .category.ID }}">{{ icon "feeds" }}{{ t "menu.feeds" }}</a>
- </li>
- <li>
- <form
- action="{{ routePath "/category/%d/entries/refresh" .category.ID }}"
- class="page-header-action-form"
- >
- <button class="page-button" data-label-loading="{{ t "confirm.loading" }}">
- {{ icon "refresh" }}{{ t "menu.refresh_all_feeds" }}
- </button>
- </form>
- </li>
- </ul>
- </nav>
- </section>
- {{ end }}
- {{ define "content"}}
- {{ if not .entries }}
- <p role="alert" class="alert">{{ t "alert.no_category_entry" }}</p>
- {{ else }}
- <div class="pagination-top">
- {{ template "pagination" .pagination }}
- </div>
- <div class="items">
- {{ range .entries }}
- <article
- class="item entry-item {{ if $.user.EntrySwipe }}entry-swipe{{ end }} item-status-{{ .Status }}"
- data-id="{{ .ID }}"
- aria-labelledby="entry-title-{{ .ID }}"
- tabindex="-1"
- >
- <header class="item-header" dir="auto">
- <h2 id="entry-title-{{ .ID }}" class="item-title">
- <a
- {{ if $.showOnlyUnreadEntries }}
- href="{{ routePath "/unread/category/%d/entry/%d" .Feed.Category.ID .ID }}"
- {{ else if $.showOnlyStarredEntries }}
- href="{{ routePath "/starred/category/%d/entry/%d" .Feed.Category.ID .ID }}"
- {{ else }}
- href="{{ routePath "/category/%d/entry/%d" .Feed.Category.ID .ID }}"
- {{ end }}
- {{ if and $.user.AlwaysOpenExternalLinks $.user.OpenExternalLinksInNewTab }}target="_blank"{{ end }}
- >
- {{ if ne .Feed.Icon.IconID 0 }}
- <img src="{{ routePath "/feed-icon/%s" .Feed.Icon.ExternalIconID }}" width="16" height="16" loading="lazy" alt="">
- {{ end }}
- {{ .Title }}
- </a>
- </h2>
- <span class="category">
- <a href="{{ routePath "/category/%d/entries" .Feed.Category.ID }}" aria-label="{{ t "page.category_label" .Feed.Category.Title }}">
- {{ .Feed.Category.Title }}
- </a>
- </span>
- </header>
- {{ template "item_meta" dict "user" $.user "entry" . "hasSaveEntry" $.hasSaveEntry }}
- </article>
- {{ end }}
- </div>
- <section class="page-footer">
- {{ if .entries }}
- <ul>
- <li>
- <button
- class="page-button"
- data-action="markPageAsRead"
- 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-show-only-unread="{{ if .showOnlyUnreadEntries }}1{{ end }}">{{ icon "mark-page-as-read" }}{{ t "menu.mark_page_as_read" }}</button>
- </li>
- </ul>
- {{ end }}
- </section>
- <div class="pagination-bottom">
- {{ template "pagination" .pagination }}
- </div>
- {{ end }}
- {{ end }}
|