2017-11-20 00:10:04 -05:00
|
|
|
|
{{ define "title"}}{{ .entry.Title }}{{ end }}
|
|
|
|
|
|
|
|
|
|
{{ define "content"}}
|
2018-08-28 23:44:34 -04:00
|
|
|
|
<section class="entry" data-id="{{ .entry.ID }}">
|
2017-11-20 00:10:04 -05:00
|
|
|
|
<header class="entry-header">
|
|
|
|
|
<h1>
|
2020-01-02 14:06:57 -05:00
|
|
|
|
<a href="{{ .entry.URL | safeURL }}" target="_blank" rel="noopener noreferrer" referrerpolicy="no-referrer">{{ .entry.Title }}</a>
|
2017-11-20 00:10:04 -05:00
|
|
|
|
</h1>
|
2017-12-02 22:32:14 -05:00
|
|
|
|
<div class="entry-actions">
|
2017-12-10 22:01:38 -05:00
|
|
|
|
<ul>
|
2018-08-28 23:44:34 -04:00
|
|
|
|
<li>
|
|
|
|
|
<a href="#"
|
2018-09-21 21:53:29 -04:00
|
|
|
|
title="{{ t "entry.status.title" }}"
|
2018-08-28 23:44:34 -04:00
|
|
|
|
data-toggle-status="true"
|
2018-09-21 21:53:29 -04:00
|
|
|
|
data-label-read="✔︎ {{ t "entry.status.read" }}"
|
|
|
|
|
data-label-unread="✘ {{ t "entry.status.unread" }}"
|
2019-10-06 23:55:15 -04:00
|
|
|
|
data-toast-read="✔︎ {{ t "entry.status.toast.read" }}"
|
|
|
|
|
data-toast-unread="✘ {{ t "entry.status.toast.unread" }}"
|
2018-08-28 23:44:34 -04:00
|
|
|
|
data-value="{{ if eq .entry.Status "read" }}read{{ else }}unread{{ end }}"
|
2018-09-21 21:53:29 -04:00
|
|
|
|
>{{ if eq .entry.Status "read" }}✘ {{ t "entry.status.unread" }}{{ else }}✔︎ {{ t "entry.status.read" }}{{ end }}</a>
|
2018-08-28 23:44:34 -04:00
|
|
|
|
</li>
|
2017-12-22 14:33:01 -05:00
|
|
|
|
<li>
|
|
|
|
|
<a href="#"
|
|
|
|
|
data-toggle-bookmark="true"
|
|
|
|
|
data-bookmark-url="{{ route "toggleBookmark" "entryID" .entry.ID }}"
|
2018-09-21 21:53:29 -04:00
|
|
|
|
data-label-loading="{{ t "entry.state.saving" }}"
|
|
|
|
|
data-label-star="☆ {{ t "entry.bookmark.toggle.on" }}"
|
|
|
|
|
data-label-unstar="★ {{ t "entry.bookmark.toggle.off" }}"
|
2019-10-06 23:55:15 -04:00
|
|
|
|
data-toast-star="★ {{ t "entry.bookmark.toast.on" }}"
|
|
|
|
|
data-toast-unstar="☆ {{ t "entry.bookmark.toast.off" }}"
|
2018-06-28 21:56:04 -04:00
|
|
|
|
data-value="{{ if .entry.Starred }}star{{ else }}unstar{{ end }}"
|
2018-09-21 21:53:29 -04:00
|
|
|
|
>{{ if .entry.Starred }}★ {{ t "entry.bookmark.toggle.off" }}{{ else }}☆ {{ t "entry.bookmark.toggle.on" }}{{ end }}</a>
|
2017-12-22 14:33:01 -05:00
|
|
|
|
</li>
|
2018-04-29 20:43:40 -04:00
|
|
|
|
{{ if .hasSaveEntry }}
|
|
|
|
|
<li>
|
|
|
|
|
<a href="#"
|
2018-09-21 21:53:29 -04:00
|
|
|
|
title="{{ t "entry.save.title" }}"
|
2018-04-29 20:43:40 -04:00
|
|
|
|
data-save-entry="true"
|
|
|
|
|
data-save-url="{{ route "saveEntry" "entryID" .entry.ID }}"
|
2018-09-21 21:53:29 -04:00
|
|
|
|
data-label-loading="{{ t "entry.state.saving" }}"
|
|
|
|
|
data-label-done="{{ t "entry.save.completed" }}"
|
2019-10-06 23:55:15 -04:00
|
|
|
|
data-toast-done="{{ t "entry.save.toast.completed" }}"
|
2018-09-21 21:53:29 -04:00
|
|
|
|
>{{ t "entry.save.title" }}</a>
|
2018-04-29 20:43:40 -04:00
|
|
|
|
</li>
|
|
|
|
|
{{ end }}
|
2017-12-10 22:01:38 -05:00
|
|
|
|
<li>
|
|
|
|
|
<a href="#"
|
2018-09-21 21:53:29 -04:00
|
|
|
|
title="{{ t "entry.scraper.title" }}"
|
2017-12-10 22:01:38 -05:00
|
|
|
|
data-fetch-content-entry="true"
|
|
|
|
|
data-fetch-content-url="{{ route "fetchContent" "entryID" .entry.ID }}"
|
2018-09-21 21:53:29 -04:00
|
|
|
|
data-label-loading="{{ t "entry.state.loading" }}"
|
|
|
|
|
data-label-done="{{ t "entry.scraper.completed" }}"
|
|
|
|
|
>{{ t "entry.scraper.label" }}</a>
|
2017-12-10 22:01:38 -05:00
|
|
|
|
</li>
|
2018-04-07 16:50:45 -04:00
|
|
|
|
{{ if .entry.CommentsURL }}
|
|
|
|
|
<li>
|
2020-01-07 01:02:02 -05:00
|
|
|
|
<a href="{{ .entry.CommentsURL | safeURL }}" title="{{ t "entry.comments.title" }}" target="_blank" rel="noopener noreferrer" referrerpolicy="no-referrer" data-comments-link="true">{{ t "entry.comments.label" }}</a>
|
2018-04-07 16:50:45 -04:00
|
|
|
|
</li>
|
|
|
|
|
{{ end }}
|
2017-12-10 22:01:38 -05:00
|
|
|
|
</ul>
|
2017-12-02 22:32:14 -05:00
|
|
|
|
</div>
|
2017-11-20 00:10:04 -05:00
|
|
|
|
<div class="entry-meta">
|
|
|
|
|
<span class="entry-website">
|
|
|
|
|
{{ if ne .entry.Feed.Icon.IconID 0 }}
|
2019-09-11 00:12:38 -04:00
|
|
|
|
<img src="{{ route "icon" "iconID" .entry.Feed.Icon.IconID }}" width="16" height="16" loading="lazy" alt="{{ .entry.Feed.Title }}">
|
2017-11-20 00:10:04 -05:00
|
|
|
|
{{ end }}
|
|
|
|
|
<a href="{{ route "feedEntries" "feedID" .entry.Feed.ID }}">{{ .entry.Feed.Title }}</a>
|
|
|
|
|
</span>
|
|
|
|
|
{{ if .entry.Author }}
|
|
|
|
|
<span class="entry-author">
|
2017-11-25 20:08:04 -05:00
|
|
|
|
{{ if isEmail .entry.Author }}
|
2017-11-20 00:10:04 -05:00
|
|
|
|
- <a href="mailto:{{ .entry.Author }}">{{ .entry.Author }}</a>
|
|
|
|
|
{{ else }}
|
|
|
|
|
– <em>{{ .entry.Author }}</em>
|
|
|
|
|
{{ end }}
|
|
|
|
|
</span>
|
|
|
|
|
{{ end }}
|
|
|
|
|
<span class="category">
|
|
|
|
|
<a href="{{ route "categoryEntries" "categoryID" .entry.Feed.Category.ID }}">{{ .entry.Feed.Category.Title }}</a>
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="entry-date">
|
2018-02-04 17:37:42 -05:00
|
|
|
|
<time datetime="{{ isodate .entry.Date }}" title="{{ isodate .entry.Date }}">{{ elapsed $.user.Timezone .entry.Date }}</time>
|
2017-11-20 00:10:04 -05:00
|
|
|
|
</div>
|
|
|
|
|
</header>
|
2017-12-05 00:09:08 -05:00
|
|
|
|
{{ if gt (len .entry.Content) 120 }}
|
2017-11-20 00:10:04 -05:00
|
|
|
|
<div class="pagination-top">
|
|
|
|
|
{{ template "entry_pagination" . }}
|
|
|
|
|
</div>
|
2017-12-05 00:09:08 -05:00
|
|
|
|
{{ end }}
|
2017-11-20 00:10:04 -05:00
|
|
|
|
<article class="entry-content">
|
|
|
|
|
{{ noescape (proxyFilter .entry.Content) }}
|
|
|
|
|
</article>
|
|
|
|
|
{{ if .entry.Enclosures }}
|
2019-11-29 13:43:30 -05:00
|
|
|
|
<details class="entry-enclosures">
|
|
|
|
|
<summary>{{ t "page.entry.attachments" }} ({{ len .entry.Enclosures }})</summary>
|
2017-11-20 00:10:04 -05:00
|
|
|
|
{{ range .entry.Enclosures }}
|
|
|
|
|
<div class="entry-enclosure">
|
|
|
|
|
{{ if hasPrefix .MimeType "audio/" }}
|
|
|
|
|
<div class="enclosure-audio">
|
|
|
|
|
<audio controls preload="metadata">
|
|
|
|
|
<source src="{{ .URL }}" type="{{ .MimeType }}">
|
|
|
|
|
</audio>
|
|
|
|
|
</div>
|
|
|
|
|
{{ else if hasPrefix .MimeType "video/" }}
|
|
|
|
|
<div class="enclosure-video">
|
|
|
|
|
<video controls preload="metadata">
|
|
|
|
|
<source src="{{ .URL }}" type="{{ .MimeType }}">
|
|
|
|
|
</video>
|
|
|
|
|
</div>
|
|
|
|
|
{{ else if hasPrefix .MimeType "image/" }}
|
|
|
|
|
<div class="enclosure-image">
|
2019-09-11 00:12:38 -04:00
|
|
|
|
<img src="{{ proxyURL .URL }}" title="{{ .URL }} ({{ .MimeType }})" loading="lazy" alt="{{ .URL }} ({{ .MimeType }})">
|
2017-11-20 00:10:04 -05:00
|
|
|
|
</div>
|
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
|
|
<div class="entry-enclosure-download">
|
2020-01-02 14:06:57 -05:00
|
|
|
|
<a href="{{ .URL | safeURL }}" title="{{ t "action.download" }}{{ if gt .Size 0 }} - {{ formatFileSize .Size }}{{ end }} ({{ .MimeType }})" target="_blank" rel="noopener noreferrer" referrerpolicy="no-referrer">{{ .URL | safeURL }}</a>
|
2019-11-29 13:27:25 -05:00
|
|
|
|
<small>{{ if gt .Size 0 }} - <strong>{{ formatFileSize .Size }}</strong>{{ end }}</small>
|
2017-11-20 00:10:04 -05:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
{{ end }}
|
2019-11-29 13:43:30 -05:00
|
|
|
|
</details>
|
2017-11-20 00:10:04 -05:00
|
|
|
|
{{ end }}
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
<div class="pagination-bottom">
|
|
|
|
|
{{ template "entry_pagination" . }}
|
|
|
|
|
</div>
|
|
|
|
|
{{ end }}
|