2018-09-22 03:53:29 +02:00
|
|
|
{{ define "title"}}{{ t "page.starred.title" }} ({{ .total }}){{ end }}
|
2017-12-22 20:33:01 +01:00
|
|
|
|
2024-01-25 07:22:18 +01:00
|
|
|
{{ define "header"}}
|
|
|
|
<header class="page-header" aria-labelledby="page-header-title">
|
|
|
|
<h1 id="page-header-title" dir="auto">
|
2024-01-23 03:42:10 +01:00
|
|
|
{{ t "page.starred.title" }}
|
|
|
|
<span aria-hidden="true"> ({{ .total }})</span>
|
|
|
|
</h1>
|
|
|
|
<span class="sr-only">{{ t "page.starred.total" }}: {{ .total }}</span>
|
2024-01-25 07:22:18 +01:00
|
|
|
</header>
|
|
|
|
{{ end }}
|
2017-12-22 20:33:01 +01:00
|
|
|
|
2024-01-25 07:22:18 +01:00
|
|
|
{{ define "content"}}
|
2017-12-22 20:33:01 +01:00
|
|
|
{{ if not .entries }}
|
2018-09-22 03:53:29 +02:00
|
|
|
<p class="alert alert-info">{{ t "alert.no_bookmark" }}</p>
|
2017-12-22 20:33:01 +01:00
|
|
|
{{ else }}
|
2022-01-17 01:59:23 +01:00
|
|
|
<div class="pagination-top">
|
|
|
|
{{ template "pagination" .pagination }}
|
|
|
|
</div>
|
2017-12-22 20:33:01 +01:00
|
|
|
<div class="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-12-22 20:33:01 +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-12-22 20:33:01 +01:00
|
|
|
{{ end }}
|
2023-06-06 03:33:03 +02:00
|
|
|
<a href="{{ route "starredEntry" "entryID" .ID }}">{{ .Title }}</a>
|
2017-12-22 20:33:01 +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-12-22 20:33:01 +01:00
|
|
|
</article>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
2022-01-17 01:59:23 +01:00
|
|
|
<div class="pagination-bottom">
|
|
|
|
{{ template "pagination" .pagination }}
|
|
|
|
</div>
|
2017-12-22 20:33:01 +01:00
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ end }}
|