// Code generated by go generate; DO NOT EDIT. package template // import "miniflux.app/template" var templateViewsMap = map[string]string{ "about": `{{ define "title"}}{{ t "page.about.title" }}{{ end }} {{ define "content"}}

Miniflux

{{ t "page.about.credits" }}

{{ end }} `, "add_subscription": `{{ define "title"}}{{ t "page.add_feed.title" }}{{ end }} {{ define "content"}} {{ if not .categories }}

{{ t "page.add_feed.no_category" }}

{{ else }}
{{ if .errorMessage }}
{{ t .errorMessage }}
{{ end }}
{{ t "page.add_feed.legend.advanced_options" }}
{{ end }} {{ end }} `, "bookmark_entries": `{{ define "title"}}{{ t "page.starred.title" }} ({{ .total }}){{ end }} {{ define "content"}} {{ if not .entries }}

{{ t "alert.no_bookmark" }}

{{ else }}
{{ range .entries }}
{{ if ne .Feed.Icon.IconID 0 }} {{ .Feed.Title }} {{ end }} {{ .Title }} {{ .Feed.Category.Title }}
{{ template "item_meta" dict "user" $.user "entry" . "hasSaveEntry" $.hasSaveEntry }}
{{ end }}
{{ template "pagination" .pagination }} {{ end }} {{ end }} `, "categories": `{{ define "title"}}{{ t "page.categories.title" }} ({{ .total }}){{ end }} {{ define "content"}} {{ if not .categories }}

{{ t "alert.no_category" }}

{{ else }}
{{ range .categories }}
{{ .Title }} ({{ .FeedCount }})
{{ end }}
{{ end }} {{ end }} `, "category_entries": `{{ define "title"}}{{ .category.Title }} ({{ .total }}){{ end }} {{ define "content"}} {{ if not .entries }}

{{ t "alert.no_category_entry" }}

{{ else }}
{{ range .entries }}
{{ if ne .Feed.Icon.IconID 0 }} {{ .Feed.Title }} {{ end }} {{ .Title }} {{ .Feed.Category.Title }}
{{ template "item_meta" dict "user" $.user "entry" . "hasSaveEntry" $.hasSaveEntry }}
{{ end }}
{{ template "pagination" .pagination }} {{ end }} {{ end }} `, "category_feeds": `{{ define "title"}}{{ .category.Title }} > {{ t "page.feeds.title" }} ({{ .total }}){{ end }} {{ define "content"}} {{ if not .feeds }}

{{ t "alert.no_feed_in_category" }}

{{ else }} {{ template "feed_list" dict "user" .user "feeds" .feeds "ParsingErrorCount" .ParsingErrorCount }} {{ end }} {{ end }} `, "choose_subscription": `{{ define "title"}}{{ t "page.add_feed.title" }}{{ end }} {{ define "content"}}
{{ if .form.Crawler }} {{ end }}

{{ t "page.add_feed.choose_feed" }}

{{ range .subscriptions }}
({{ .Type }}) {{ .URL | safeURL }}
{{ end }}
{{ end }} `, "create_category": `{{ define "title"}}{{ t "page.new_category.title" }}{{ end }} {{ define "content"}}
{{ if .errorMessage }}
{{ t .errorMessage }}
{{ end }}
{{ t "action.or" }} {{ t "action.cancel" }}
{{ end }} `, "create_user": `{{ define "title"}}{{ t "page.new_user.title" }}{{ end }} {{ define "content"}}
{{ if .errorMessage }}
{{ t .errorMessage }}
{{ end }}
{{ t "action.or" }} {{ t "action.cancel" }}
{{ end }} `, "edit_category": `{{ define "title"}}{{ t "page.edit_category.title" .category.Title }}{{ end }} {{ define "content"}}
{{ if .errorMessage }}
{{ t .errorMessage }}
{{ end }}
{{ end }} `, "edit_feed": `{{ define "title"}}{{ t "page.edit_feed.title" .feed.Title }}{{ end }} {{ define "content"}} {{ if not .categories }}

{{ t "page.add_feed.no_category" }}

{{ else }} {{ if ne .feed.ParsingErrorCount 0 }}

{{ t "page.edit_feed.last_parsing_error" }}

{{ t .feed.ParsingErrorMsg }}

{{ end }}
{{ if .errorMessage }}
{{ t .errorMessage }}
{{ end }}
{{ t "action.or" }} {{ t "action.cancel" }}
{{ t "action.remove_feed" }}
{{ end }} {{ end }} `, "edit_user": `{{ define "title"}}{{ t "page.edit_user.title" .selected_user.Username }}{{ end }} {{ define "content"}}
{{ if .errorMessage }}
{{ t .errorMessage }}
{{ end }}
{{ t "action.or" }} {{ t "action.cancel" }}
{{ end }} `, "entry": `{{ define "title"}}{{ .entry.Title }}{{ end }} {{ define "content"}}

{{ .entry.Title }}

{{ if gt (len .entry.Content) 120 }}
{{ template "entry_pagination" . }}
{{ end }}
{{ noescape (proxyFilter .entry.Content) }}
{{ if .entry.Enclosures }}
{{ t "page.entry.attachments" }} ({{ len .entry.Enclosures }}) {{ range .entry.Enclosures }}
{{ if hasPrefix .MimeType "audio/" }}
{{ else if hasPrefix .MimeType "video/" }}
{{ else if hasPrefix .MimeType "image/" }}
{{ .URL }} ({{ .MimeType }})
{{ end }}
{{ .URL | safeURL }} {{ if gt .Size 0 }} - {{ formatFileSize .Size }}{{ end }}
{{ end }}
{{ end }}
{{ template "entry_pagination" . }}
{{ end }} `, "feed_entries": `{{ define "title"}}{{ .feed.Title }} ({{ .total }}){{ end }} {{ define "content"}} {{ if ne .feed.ParsingErrorCount 0 }}

{{ t "alert.feed_error" }}

{{ t .feed.ParsingErrorMsg }}

{{ end }} {{ if not .entries }} {{ if .showOnlyUnreadEntries }}

{{ t "alert.no_unread_entry" }}

{{ else }}

{{ t "alert.no_feed_entry" }}

{{ end }} {{ else }}
{{ range .entries }}
{{ if ne .Feed.Icon.IconID 0 }} {{ .Feed.Title }} {{ end }} {{ .Title }} {{ .Feed.Category.Title }}
{{ template "item_meta" dict "user" $.user "entry" . "hasSaveEntry" $.hasSaveEntry }}
{{ end }}
{{ template "pagination" .pagination }} {{ end }} {{ end }} `, "feeds": `{{ define "title"}}{{ t "page.feeds.title" }} ({{ .total }}){{ end }} {{ define "content"}} {{ if not .feeds }}

{{ t "alert.no_feed" }}

{{ else }} {{ template "feed_list" dict "user" .user "feeds" .feeds "ParsingErrorCount" .ParsingErrorCount }} {{ end }} {{ end }} `, "history_entries": `{{ define "title"}}{{ t "page.history.title" }} ({{ .total }}){{ end }} {{ define "content"}} {{ if not .entries }}

{{ t "alert.no_history" }}

{{ else }}
{{ range .entries }}
{{ if ne .Feed.Icon.IconID 0 }} {{ .Feed.Title }} {{ end }} {{ .Title }} {{ .Feed.Category.Title }}
{{ template "item_meta" dict "user" $.user "entry" . "hasSaveEntry" $.hasSaveEntry }}
{{ end }}
{{ template "pagination" .pagination }} {{ end }} {{ end }} `, "import": `{{ define "title"}}{{ t "page.import.title" }}{{ end }} {{ define "content"}} {{ if .errorMessage }}
{{ t .errorMessage }}
{{ end }}

{{ end }} `, "integrations": `{{ define "title"}}{{ t "page.integrations.title" }}{{ end }} {{ define "content"}}
{{ if .errorMessage }}
{{ t .errorMessage }}
{{ end }}

Fever

{{ t "form.integration.fever_endpoint" }} {{ rootURL }}{{ route "feverEndpoint" }}

Pinboard

Instapaper

Pocket

{{ if not .hasPocketConsumerKeyConfigured }} {{ end }} {{ if not .form.PocketAccessToken }}

{{ t "form.integration.pocket_connect_link" }}

{{ end }}

Wallabag

Nunux Keeper

{{ t "page.integration.miniflux_api" }}

{{ t "page.integration.bookmarklet" }}

{{ t "page.integration.bookmarklet.help" }}