Skip to content
Snippets Groups Projects
Commit b3dae675 authored by Frédéric Guillot's avatar Frédéric Guillot
Browse files

Fix regression introduced by PR #1286

parent c1c36245
No related merge requests found
......@@ -5,9 +5,10 @@
<title>{{ t "page.offline.title" }} - Miniflux</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="color-scheme" content="dark light">
<meta name="theme-color" content="{{ theme_color .theme }}">
<meta name="theme-color" content="{{ theme_color .theme "light" }}" media="(prefers-color-scheme: light)">
<meta name="theme-color" content="{{ theme_color .theme "dark" }}" media="(prefers-color-scheme: dark)">
</head>
<body>
<p>{{ t "page.offline.message" }} <a href="{{ route "unread" }}">{{ t "page.offline.refresh_page" }}</a>.</p>
<p>{{ t "page.offline.message" }} - <a href="{{ route "unread" }}">{{ t "page.offline.refresh_page" }}</a>.</p>
</body>
</html>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment