2017-11-20 06:10:04 +01:00
|
|
|
{{ define "base" }}
|
|
|
|
<!DOCTYPE html>
|
2021-05-31 22:19:37 +02:00
|
|
|
<html lang="{{ replace .language "_" "-"}}">
|
2017-11-20 06:10:04 +01:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
2018-07-19 07:30:05 +02:00
|
|
|
<title>{{template "title" .}} - Miniflux</title>
|
2017-12-16 06:28:54 +01:00
|
|
|
|
2018-07-19 07:30:05 +02:00
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
2017-12-03 00:01:05 +01:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
|
2017-12-16 06:28:54 +01:00
|
|
|
<meta name="mobile-web-app-capable" content="yes">
|
|
|
|
<meta name="apple-mobile-web-app-title" content="Miniflux">
|
2019-07-05 08:13:25 +02:00
|
|
|
<link rel="manifest" href="{{ route "webManifest" }}" crossorigin="use-credentials"/>
|
2017-12-16 06:28:54 +01:00
|
|
|
|
2017-11-20 06:10:04 +01:00
|
|
|
<meta name="robots" content="noindex,nofollow">
|
|
|
|
<meta name="referrer" content="no-referrer">
|
2019-10-30 07:06:25 +01:00
|
|
|
<meta name="google" content="notranslate">
|
2017-12-16 06:28:54 +01:00
|
|
|
|
2018-07-19 06:30:54 +02:00
|
|
|
<!-- Favicons -->
|
|
|
|
<link rel="icon" type="image/png" sizes="16x16" href="{{ route "appIcon" "filename" "favicon-16.png" }}">
|
|
|
|
<link rel="icon" type="image/png" sizes="32x32" href="{{ route "appIcon" "filename" "favicon-32.png" }}">
|
|
|
|
|
|
|
|
<!-- Android icons -->
|
|
|
|
<link rel="icon" type="image/png" sizes="128x128" href="{{ route "appIcon" "filename" "icon-128.png" }}">
|
|
|
|
<link rel="icon" type="image/png" sizes="192x192" href="{{ route "appIcon" "filename" "icon-192.png" }}">
|
|
|
|
|
|
|
|
<!-- iOS icons -->
|
|
|
|
<link rel="apple-touch-icon" sizes="120x120" href="{{ route "appIcon" "filename" "icon-120.png" }}">
|
|
|
|
<link rel="apple-touch-icon" sizes="152x152" href="{{ route "appIcon" "filename" "icon-152.png" }}">
|
|
|
|
<link rel="apple-touch-icon" sizes="167x167" href="{{ route "appIcon" "filename" "icon-167.png" }}">
|
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="{{ route "appIcon" "filename" "icon-180.png" }}">
|
2017-12-16 06:28:54 +01:00
|
|
|
|
2018-07-19 07:30:05 +02:00
|
|
|
<meta name="theme-color" content="{{ theme_color .theme }}">
|
2018-07-22 21:24:46 +02:00
|
|
|
<link rel="stylesheet" type="text/css" href="{{ route "stylesheet" "name" .theme }}?{{ .theme_checksum }}">
|
2020-12-22 06:14:10 +01:00
|
|
|
{{ if and .user .user.Stylesheet }}
|
2021-05-21 22:57:11 +02:00
|
|
|
<link rel="stylesheet" type="text/css" href="{{ route "stylesheet" "name" "custom_css" }}?{{ rand }}">
|
2020-12-22 06:14:10 +01:00
|
|
|
{{ end }}
|
2018-07-16 06:51:09 +02:00
|
|
|
|
2021-05-31 22:44:34 +02:00
|
|
|
<script src="{{ route "javascript" "name" "app" }}?{{ .app_js_checksum }}" defer></script>
|
|
|
|
<script src="{{ route "javascript" "name" "service-worker" }}?{{ .sw_js_checksum }}" defer id="service-worker-script"></script>
|
2017-11-20 06:10:04 +01:00
|
|
|
</head>
|
2019-04-29 03:20:46 +02:00
|
|
|
<body
|
2021-05-31 22:44:34 +02:00
|
|
|
{{ if .csrf }}data-csrf-token="{{ .csrf }}"{{ end }}
|
2019-04-29 03:20:46 +02:00
|
|
|
data-entries-status-url="{{ route "updateEntriesStatus" }}"
|
2020-05-27 06:35:44 +02:00
|
|
|
data-refresh-all-feeds-url="{{ route "refreshAllFeeds" }}"
|
2019-04-29 03:20:46 +02:00
|
|
|
{{ if .user }}{{ if not .user.KeyboardShortcuts }}data-disable-keyboard-shortcuts="true"{{ end }}{{ end }}>
|
2021-03-07 20:55:43 +01:00
|
|
|
|
2017-11-20 06:10:04 +01:00
|
|
|
{{ if .user }}
|
|
|
|
<header class="header">
|
|
|
|
<nav>
|
|
|
|
<div class="logo">
|
|
|
|
<a href="{{ route "unread" }}">Mini<span>flux</span></a>
|
|
|
|
</div>
|
|
|
|
<ul>
|
2018-09-22 03:53:29 +02:00
|
|
|
<li {{ if eq .menu "unread" }}class="active"{{ end }} title="{{ t "tooltip.keyboard_shortcuts" "g u" }}">
|
|
|
|
<a href="{{ route "unread" }}" data-page="unread">{{ t "menu.unread" }}
|
2018-05-21 12:38:44 +02:00
|
|
|
{{ if gt .countUnread 0 }}
|
|
|
|
<span class="unread-counter-wrapper">(<span class="unread-counter">{{ .countUnread }}</span>)</span>
|
|
|
|
{{ end }}
|
|
|
|
</a>
|
2017-11-20 06:10:04 +01:00
|
|
|
</li>
|
2018-09-22 03:53:29 +02:00
|
|
|
<li {{ if eq .menu "starred" }}class="active"{{ end }} title="{{ t "tooltip.keyboard_shortcuts" "g b" }}">
|
|
|
|
<a href="{{ route "starred" }}" data-page="starred">{{ t "menu.starred" }}</a>
|
2017-12-22 20:33:01 +01:00
|
|
|
</li>
|
2018-09-22 03:53:29 +02:00
|
|
|
<li {{ if eq .menu "history" }}class="active"{{ end }} title="{{ t "tooltip.keyboard_shortcuts" "g h" }}">
|
|
|
|
<a href="{{ route "history" }}" data-page="history">{{ t "menu.history" }}</a>
|
2017-11-20 06:10:04 +01:00
|
|
|
</li>
|
2018-09-22 03:53:29 +02:00
|
|
|
<li {{ if eq .menu "feeds" }}class="active"{{ end }} title="{{ t "tooltip.keyboard_shortcuts" "g f" }}">
|
|
|
|
<a href="{{ route "feeds" }}" data-page="feeds">{{ t "menu.feeds" }}
|
2018-08-27 01:18:07 +02:00
|
|
|
{{ if gt .countErrorFeeds 0 }}
|
|
|
|
<span class="error-feeds-counter-wrapper">(<span class="error-feeds-counter">{{ .countErrorFeeds }}</span>)</span>
|
|
|
|
{{ end }}
|
|
|
|
</a>
|
2017-11-20 06:10:04 +01:00
|
|
|
</li>
|
2018-09-22 03:53:29 +02:00
|
|
|
<li {{ if eq .menu "categories" }}class="active"{{ end }} title="{{ t "tooltip.keyboard_shortcuts" "g c" }}">
|
|
|
|
<a href="{{ route "categories" }}" data-page="categories">{{ t "menu.categories" }}</a>
|
2017-11-20 06:10:04 +01:00
|
|
|
</li>
|
2018-09-22 03:53:29 +02:00
|
|
|
<li {{ if eq .menu "settings" }}class="active"{{ end }} title="{{ t "tooltip.keyboard_shortcuts" "g s" }}">
|
|
|
|
<a href="{{ route "settings" }}" data-page="settings">{{ t "menu.settings" }}</a>
|
2017-11-20 06:10:04 +01:00
|
|
|
</li>
|
|
|
|
<li>
|
2018-09-22 03:53:29 +02:00
|
|
|
<a href="{{ route "logout" }}" title="{{ t "tooltip.logged_user" .user.Username }}">{{ t "menu.logout" }}</a>
|
2017-11-20 06:10:04 +01:00
|
|
|
</li>
|
|
|
|
</ul>
|
2018-07-05 07:05:19 +02:00
|
|
|
<div class="search">
|
|
|
|
<div class="search-toggle-switch {{ if $.searchQuery }}has-search-query{{ end }}">
|
2018-09-22 03:53:29 +02:00
|
|
|
<a href="#" data-action="search">« {{ t "search.label" }}</a>
|
2018-07-05 07:05:19 +02:00
|
|
|
</div>
|
|
|
|
<form action="{{ route "searchEntries" }}" class="search-form {{ if $.searchQuery }}has-search-query{{ end }}">
|
2018-09-22 03:53:29 +02:00
|
|
|
<input type="search" name="q" id="search-input" placeholder="{{ t "search.placeholder" }}" {{ if $.searchQuery }}value="{{ .searchQuery }}"{{ end }} required>
|
2018-07-05 07:05:19 +02:00
|
|
|
</form>
|
|
|
|
</div>
|
2017-11-20 06:10:04 +01:00
|
|
|
</nav>
|
|
|
|
</header>
|
|
|
|
{{ end }}
|
2017-12-17 03:07:53 +01:00
|
|
|
{{ if .flashMessage }}
|
|
|
|
<div class="flash-message alert alert-success">{{ .flashMessage }}</div>
|
|
|
|
{{ end }}
|
|
|
|
{{ if .flashErrorMessage }}
|
|
|
|
<div class="flash-error-message alert alert-error">{{ .flashErrorMessage }}</div>
|
|
|
|
{{ end }}
|
2017-12-03 02:04:01 +01:00
|
|
|
<main>
|
2017-11-20 06:10:04 +01:00
|
|
|
{{template "content" .}}
|
2017-12-03 02:04:01 +01:00
|
|
|
</main>
|
2017-12-29 01:27:54 +01:00
|
|
|
<template id="keyboard-shortcuts">
|
|
|
|
<div id="modal-left">
|
|
|
|
<a href="#" class="btn-close-modal">x</a>
|
2018-09-22 03:53:29 +02:00
|
|
|
<h3>{{ t "page.keyboard_shortcuts.title" }}</h3>
|
2017-12-29 01:27:54 +01:00
|
|
|
|
|
|
|
<div class="keyboard-shortcuts">
|
2018-09-22 03:53:29 +02:00
|
|
|
<p>{{ t "page.keyboard_shortcuts.subtitle.sections" }}</p>
|
2017-12-29 01:27:54 +01:00
|
|
|
<ul>
|
2018-09-22 03:53:29 +02:00
|
|
|
<li>{{ t "page.keyboard_shortcuts.go_to_unread" }} = <strong>g + u</strong></li>
|
|
|
|
<li>{{ t "page.keyboard_shortcuts.go_to_starred" }} = <strong>g + b</strong></li>
|
|
|
|
<li>{{ t "page.keyboard_shortcuts.go_to_history" }} = <strong>g + h</strong></li>
|
|
|
|
<li>{{ t "page.keyboard_shortcuts.go_to_feeds" }} = <strong>g + f</strong></li>
|
|
|
|
<li>{{ t "page.keyboard_shortcuts.go_to_categories" }} = <strong>g + c</strong></li>
|
|
|
|
<li>{{ t "page.keyboard_shortcuts.go_to_settings" }} = <strong>g + s</strong></li>
|
|
|
|
<li>{{ t "page.keyboard_shortcuts.show_keyboard_shortcuts" }} = <strong>?</strong></li>
|
2017-12-29 01:27:54 +01:00
|
|
|
</ul>
|
|
|
|
|
2018-09-22 03:53:29 +02:00
|
|
|
<p>{{ t "page.keyboard_shortcuts.subtitle.items" }}</p>
|
2017-12-29 01:27:54 +01:00
|
|
|
<ul>
|
2019-05-26 20:02:52 +02:00
|
|
|
<li>{{ t "page.keyboard_shortcuts.go_to_previous_item" }} = <strong>p</strong>, <strong>k</strong>, <strong>◄</strong></li>
|
|
|
|
<li>{{ t "page.keyboard_shortcuts.go_to_next_item" }} = <strong>n</strong>, <strong>j</strong>, <strong>►</strong></li>
|
2020-10-07 03:06:12 +02:00
|
|
|
<li>{{ t "page.keyboard_shortcuts.go_to_feed" }} = <strong>F</strong></li>
|
2017-12-29 01:27:54 +01:00
|
|
|
</ul>
|
|
|
|
|
2018-09-22 03:53:29 +02:00
|
|
|
<p>{{ t "page.keyboard_shortcuts.subtitle.pages" }}</p>
|
2017-12-29 01:27:54 +01:00
|
|
|
<ul>
|
2018-09-22 03:53:29 +02:00
|
|
|
<li>{{ t "page.keyboard_shortcuts.go_to_previous_page" }} = <strong>h</strong></li>
|
|
|
|
<li>{{ t "page.keyboard_shortcuts.go_to_next_page" }} = <strong>l</strong></li>
|
2017-12-29 01:27:54 +01:00
|
|
|
</ul>
|
|
|
|
|
2018-09-22 03:53:29 +02:00
|
|
|
<p>{{ t "page.keyboard_shortcuts.subtitle.actions" }}</p>
|
2017-12-29 01:27:54 +01:00
|
|
|
<ul>
|
2018-09-22 03:53:29 +02:00
|
|
|
<li>{{ t "page.keyboard_shortcuts.open_item" }} = <strong>o</strong></li>
|
|
|
|
<li>{{ t "page.keyboard_shortcuts.open_original" }} = <strong>v</strong></li>
|
2019-11-29 22:48:56 +01:00
|
|
|
<li>{{ t "page.keyboard_shortcuts.open_original_same_window" }} = <strong>V</strong></li>
|
2020-01-07 07:02:02 +01:00
|
|
|
<li>{{ t "page.keyboard_shortcuts.open_comments" }} = <strong>c</strong></li>
|
|
|
|
<li>{{ t "page.keyboard_shortcuts.open_comments_same_window" }} = <strong>C</strong></li>
|
2018-09-22 03:53:29 +02:00
|
|
|
<li>{{ t "page.keyboard_shortcuts.toggle_read_status" }} = <strong>m</strong></li>
|
|
|
|
<li>{{ t "page.keyboard_shortcuts.mark_page_as_read" }} = <strong>A</strong></li>
|
|
|
|
<li>{{ t "page.keyboard_shortcuts.download_content" }} = <strong>d</strong></li>
|
|
|
|
<li>{{ t "page.keyboard_shortcuts.toggle_bookmark_status" }} = <strong>f</strong></li>
|
|
|
|
<li>{{ t "page.keyboard_shortcuts.save_article" }} = <strong>s</strong></li>
|
2020-10-17 00:44:03 +02:00
|
|
|
<li>{{ t "page.keyboard_shortcuts.scroll_item_to_top" }} = <strong>z + t</strong></li>
|
2020-05-27 06:35:44 +02:00
|
|
|
<li>{{ t "page.keyboard_shortcuts.refresh_all_feeds" }} = <strong>R</strong></li>
|
2018-10-14 00:43:09 +02:00
|
|
|
<li>{{ t "page.keyboard_shortcuts.remove_feed" }} = <strong>#</strong></li>
|
2018-09-22 03:53:29 +02:00
|
|
|
<li>{{ t "page.keyboard_shortcuts.go_to_search" }} = <strong>/</strong></li>
|
|
|
|
<li>{{ t "page.keyboard_shortcuts.close_modal" }} = <strong>Esc</strong></li>
|
2017-12-29 01:27:54 +01:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
2021-03-07 20:55:43 +01:00
|
|
|
|
|
|
|
<template id="icon-read">{{ icon "read" }}</template>
|
|
|
|
<template id="icon-unread">{{ icon "unread" }}</template>
|
|
|
|
<template id="icon-star">{{ icon "star" }}</template>
|
|
|
|
<template id="icon-unstar">{{ icon "unstar" }}</template>
|
|
|
|
<template id="icon-save">{{ icon "save" }}</template>
|
|
|
|
|
|
|
|
<div id="toast-wrapper" role="alert" aria-live="assertive" aria-atomic="true">
|
|
|
|
<span id="toast-msg"></span>
|
|
|
|
</div>
|
2017-11-20 06:10:04 +01:00
|
|
|
</body>
|
|
|
|
</html>
|
2018-01-18 00:57:30 +01:00
|
|
|
{{ end }}
|