179 lines
		
	
	
	
		
			9.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			179 lines
		
	
	
	
		
			9.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{ define "title"}}{{ .entry.Title }}{{ end }}
 | 
						||
 | 
						||
{{ define "content"}}
 | 
						||
<section class="entry" data-id="{{ .entry.ID }}">
 | 
						||
    <header class="entry-header">
 | 
						||
        <h1 dir="auto">
 | 
						||
            <a href="{{ .entry.URL | safeURL }}" target="_blank" rel="noopener noreferrer" referrerpolicy="no-referrer">{{ .entry.Title }}</a>
 | 
						||
        </h1>
 | 
						||
        {{ if .user }}
 | 
						||
        <div class="entry-actions">
 | 
						||
            <ul>
 | 
						||
                <li>
 | 
						||
                    <a href="#"
 | 
						||
                        title="{{ t "entry.status.title" }}"
 | 
						||
                        data-toggle-status="true"
 | 
						||
                        data-label-unread="{{ t "entry.status.unread" }}"
 | 
						||
                        data-label-read="{{ t "entry.status.read" }}"
 | 
						||
                        data-toast-unread="✘ {{ t "entry.status.toast.unread" }}"
 | 
						||
                        data-toast-read="✔︎ {{ t "entry.status.toast.read" }}"
 | 
						||
                        data-value="{{ if eq .entry.Status "read" }}read{{ else }}unread{{ end }}"
 | 
						||
                        >{{ if eq .entry.Status "unread" }}{{ template "icon_read" }}{{ else }}{{ template "icon_unread" }}{{ end }}<span class="icon-label">{{ if eq .entry.Status "unread" }}{{ t "entry.status.read" }}{{ else }}{{ t "entry.status.unread" }}{{ end }}</span></a>
 | 
						||
                </li>
 | 
						||
                <li>
 | 
						||
                    <a href="#"
 | 
						||
                        data-toggle-bookmark="true"
 | 
						||
                        data-bookmark-url="{{ route "toggleBookmark" "entryID" .entry.ID }}"
 | 
						||
                        data-label-loading="{{ t "entry.state.saving" }}"
 | 
						||
                        data-label-star="{{ t "entry.bookmark.toggle.on" }}"
 | 
						||
                        data-label-unstar="{{ t "entry.bookmark.toggle.off" }}"
 | 
						||
                        data-toast-star="★ {{ t "entry.bookmark.toast.on" }}"
 | 
						||
                        data-toast-unstar="☆ {{ t "entry.bookmark.toast.off" }}"
 | 
						||
                        data-value="{{ if .entry.Starred }}star{{ else }}unstar{{ end }}"
 | 
						||
                        >{{ if .entry.Starred }}{{ template "icon_unstar" }}{{ else }}{{ template "icon_star" }}{{ end }}<span class="icon-label">{{ if .entry.Starred }}{{ t "entry.bookmark.toggle.off" }}{{ else }}{{ t "entry.bookmark.toggle.on" }}{{ end }}</span></a>
 | 
						||
                </li>
 | 
						||
                {{ if .hasSaveEntry }}
 | 
						||
                    <li>
 | 
						||
                        <a href="#"
 | 
						||
                            title="{{ t "entry.save.title" }}"
 | 
						||
                            data-save-entry="true"
 | 
						||
                            data-save-url="{{ route "saveEntry" "entryID" .entry.ID }}"
 | 
						||
                            data-label-loading="{{ t "entry.state.saving" }}"
 | 
						||
                            data-label-done="{{ t "entry.save.completed" }}"
 | 
						||
                            data-toast-done="{{ t "entry.save.toast.completed" }}"
 | 
						||
                            >{{ template "icon_save" }}<span class="icon-label">{{ t "entry.save.label" }}</span></a>
 | 
						||
                    </li>
 | 
						||
                {{ end }}
 | 
						||
                <li>
 | 
						||
                    {{ if .entry.ShareCode }}
 | 
						||
                        <a href="{{ route "sharedEntry" "shareCode" .entry.ShareCode }}"
 | 
						||
                            title="{{ t "entry.shared_entry.title" }}"
 | 
						||
                            target="_blank">{{ template "icon_share" }}<span class="icon-label">{{ t "entry.shared_entry.label" }}</span></a>
 | 
						||
                    {{ else }}
 | 
						||
                        <a href="{{ route "shareEntry" "entryID" .entry.ID }}"
 | 
						||
                            title="{{ t "entry.share.title" }}"
 | 
						||
                            target="_blank">{{ template "icon_share" }}<span class="icon-label">{{ t "entry.share.label" }}</span></a>
 | 
						||
                    {{ end }}
 | 
						||
                </li>
 | 
						||
                <li>
 | 
						||
                    <a href="{{ .entry.URL | safeURL  }}"
 | 
						||
                        target="_blank"
 | 
						||
                        rel="noopener noreferrer"
 | 
						||
                        referrerpolicy="no-referrer"
 | 
						||
                        data-original-link="true">{{ template "icon_external_link" }}<span class="icon-label">{{ t "entry.external_link.label" }}</span></a>
 | 
						||
                </li>
 | 
						||
                <li>
 | 
						||
                    <a href="#"
 | 
						||
                        title="{{ t "entry.scraper.title" }}"
 | 
						||
                        data-fetch-content-entry="true"
 | 
						||
                        data-fetch-content-url="{{ route "fetchContent" "entryID" .entry.ID }}"
 | 
						||
                        data-label-loading="{{ t "entry.state.loading" }}"
 | 
						||
                        >{{ template "icon_scraper" }}<span class="icon-label">{{ t "entry.scraper.label" }}</span></a>
 | 
						||
                </li>
 | 
						||
                {{ if .entry.CommentsURL }}
 | 
						||
                    <li>
 | 
						||
                        <a href="{{ .entry.CommentsURL | safeURL }}"
 | 
						||
                           title="{{ t "entry.comments.title" }}"
 | 
						||
                           target="_blank"
 | 
						||
                           rel="noopener noreferrer"
 | 
						||
                           referrerpolicy="no-referrer"
 | 
						||
                           data-comments-link="true"
 | 
						||
                        >{{ template "icon_comment" }}<span class="icon-label">{{ t "entry.comments.label" }}</span></a>
 | 
						||
                    </li>
 | 
						||
                {{ end }}
 | 
						||
            </ul>
 | 
						||
        </div>
 | 
						||
        {{ end }}
 | 
						||
        <div class="entry-meta" dir="auto">
 | 
						||
            <span class="entry-website">
 | 
						||
                {{ if and .user (ne .entry.Feed.Icon.IconID 0) }}
 | 
						||
                    <img src="{{ route "icon" "iconID" .entry.Feed.Icon.IconID }}" width="16" height="16" loading="lazy" alt="{{ .entry.Feed.Title }}">
 | 
						||
                {{ end }}
 | 
						||
                {{ if .user }}
 | 
						||
                    <a href="{{ route "feedEntries" "feedID" .entry.Feed.ID }}">{{ .entry.Feed.Title }}</a>
 | 
						||
                {{ else }}
 | 
						||
                    <a href="{{ .entry.Feed.SiteURL | safeURL }}">{{ .entry.Feed.Title }}</a>
 | 
						||
                {{ end }}
 | 
						||
            </span>
 | 
						||
            {{ if .entry.Author }}
 | 
						||
                <span class="entry-author">
 | 
						||
                    {{ if isEmail .entry.Author }}
 | 
						||
                        - <a href="mailto:{{ .entry.Author }}">{{ .entry.Author }}</a>
 | 
						||
                    {{ else }}
 | 
						||
                        – <em>{{ .entry.Author }}</em>
 | 
						||
                    {{ end }}
 | 
						||
                </span>
 | 
						||
            {{ end }}
 | 
						||
            {{ if .user }}
 | 
						||
                <span class="category">
 | 
						||
                    <a href="{{ route "categoryEntries" "categoryID" .entry.Feed.Category.ID }}">{{ .entry.Feed.Category.Title }}</a>
 | 
						||
                </span>
 | 
						||
            {{ end }}
 | 
						||
        </div>
 | 
						||
        <div class="entry-date">
 | 
						||
            {{ if .user }}
 | 
						||
                <time datetime="{{ isodate .entry.Date }}" title="{{ isodate .entry.Date }}">{{ elapsed $.user.Timezone .entry.Date }}</time>
 | 
						||
            {{ else }}
 | 
						||
                <time datetime="{{ isodate .entry.Date }}" title="{{ isodate .entry.Date }}">{{ elapsed "UTC" .entry.Date }}</time>
 | 
						||
            {{ end }}
 | 
						||
        </div>
 | 
						||
    </header>
 | 
						||
    {{ if gt (len .entry.Content) 120 }}
 | 
						||
    {{ if .user }}
 | 
						||
    <div class="pagination-top">
 | 
						||
        {{ template "entry_pagination" . }}
 | 
						||
    </div>
 | 
						||
    {{ end }}
 | 
						||
    {{ end }}
 | 
						||
    <article class="entry-content" dir="auto">
 | 
						||
        {{ if .user }}
 | 
						||
            {{ noescape (proxyFilter .entry.Content) }}
 | 
						||
        {{ else }}
 | 
						||
            {{ noescape .entry.Content }}
 | 
						||
        {{ end }}
 | 
						||
    </article>
 | 
						||
    {{ if .entry.Enclosures }}
 | 
						||
    <details class="entry-enclosures">
 | 
						||
        <summary>{{ t "page.entry.attachments" }} ({{ len .entry.Enclosures }})</summary>
 | 
						||
        {{ range .entry.Enclosures }}
 | 
						||
            {{ if ne .URL "" }}
 | 
						||
            <div class="entry-enclosure">
 | 
						||
                {{ if hasPrefix .MimeType "audio/" }}
 | 
						||
                    <div class="enclosure-audio">
 | 
						||
                        <audio controls preload="metadata">
 | 
						||
                            <source src="{{ .URL | safeURL }}" type="{{ .MimeType }}">
 | 
						||
                        </audio>
 | 
						||
                    </div>
 | 
						||
                {{ else if hasPrefix .MimeType "video/" }}
 | 
						||
                    <div class="enclosure-video">
 | 
						||
                        <video controls preload="metadata">
 | 
						||
                            <source src="{{ .URL | safeURL }}" type="{{ .MimeType }}">
 | 
						||
                        </video>
 | 
						||
                    </div>
 | 
						||
                {{ else if hasPrefix .MimeType "image/" }}
 | 
						||
                    <div class="enclosure-image">
 | 
						||
                        {{ if $.user }}
 | 
						||
                            <img src="{{ proxyURL .URL }}" title="{{ .URL }} ({{ .MimeType }})" loading="lazy" alt="{{ .URL }} ({{ .MimeType }})">
 | 
						||
                        {{ else }}
 | 
						||
                            <img src="{{ .URL | safeURL }}" title="{{ .URL }} ({{ .MimeType }})" loading="lazy" alt="{{ .URL }} ({{ .MimeType }})">
 | 
						||
                        {{ end }}
 | 
						||
                    </div>
 | 
						||
                {{ end }}
 | 
						||
 | 
						||
                <div class="entry-enclosure-download">
 | 
						||
                    <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>
 | 
						||
                    <small>{{ if gt .Size 0 }} - <strong>{{ formatFileSize .Size }}</strong>{{ end }}</small>
 | 
						||
                </div>
 | 
						||
            </div>
 | 
						||
            {{ end }}
 | 
						||
        {{ end }}
 | 
						||
        </details>
 | 
						||
    {{ end }}
 | 
						||
</section>
 | 
						||
 | 
						||
{{ if .user }}
 | 
						||
<div class="pagination-bottom">
 | 
						||
    {{ template "entry_pagination" . }}
 | 
						||
</div>
 | 
						||
{{ end }}
 | 
						||
{{ end }}
 |