b568b1d41d
add nav landmark for links labeling the purpose of nav in page-header labeling the meaning of total number in page-header title
57 lines
2.3 KiB
HTML
57 lines
2.3 KiB
HTML
{{ define "title"}}{{ t "page.history.title" }} ({{ .total }}){{ end }}
|
|
|
|
{{ define "content"}}
|
|
<section class="page-header">
|
|
<h1>
|
|
{{ t "page.history.title" }}
|
|
<span aria-hidden="true">({{ .total }})</span>
|
|
</h1>
|
|
<span class="sr-only">{{ t "page.history.total" }}: {{ .total }}</span>
|
|
<nav aria-label="{{ t "page.history.title" }} {{ t "menu.title" }}">
|
|
<ul>
|
|
{{ if .entries }}
|
|
<li>
|
|
<a href="#"
|
|
data-confirm="true"
|
|
data-url="{{ route "flushHistory" }}"
|
|
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 "delete" }}{{ t "menu.flush_history" }}</a>
|
|
</li>
|
|
{{ end }}
|
|
<li>
|
|
<a href="{{ route "sharedEntries" }}">{{ icon "share" }}{{ t "menu.shared_entries" }}</a>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
</section>
|
|
|
|
{{ if not .entries }}
|
|
<p class="alert alert-info">{{ t "alert.no_history" }}</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 }}">
|
|
<div class="item-header" dir="auto">
|
|
<span class="item-title">
|
|
{{ if ne .Feed.Icon.IconID 0 }}
|
|
<img src="{{ route "icon" "iconID" .Feed.Icon.IconID }}" width="16" height="16" loading="lazy" alt="{{ .Feed.Title }}">
|
|
{{ end }}
|
|
<a href="{{ route "readEntry" "entryID" .ID }}">{{ .Title }}</a>
|
|
</span>
|
|
<span class="category"><a href="{{ route "categoryEntries" "categoryID" .Feed.Category.ID }}">{{ .Feed.Category.Title }}</a></span>
|
|
</div>
|
|
{{ template "item_meta" dict "user" $.user "entry" . "hasSaveEntry" $.hasSaveEntry }}
|
|
</article>
|
|
{{ end }}
|
|
</div>
|
|
<div class="pagination-bottom">
|
|
{{ template "pagination" .pagination }}
|
|
</div>
|
|
{{ end }}
|
|
|
|
{{ end }}
|