e837d84105
* Adds basic Manifest.json * Adds Meta Tags for iOS * Adds Meta Tags for Android * Adds Logo for Manifest.json * Adds iOS Logo for homescreen
54 lines
1.9 KiB
HTML
54 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
{% block head %}
|
|
<title>{% block title %}Libreddit{% endblock %}</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
<meta name="description" content="View on Libreddit, an alternative private front-end to Reddit.">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<!-- General PWA -->
|
|
<meta name="theme-color" content="#009a9a"/>
|
|
<!-- iOS Application -->
|
|
<meta name="apple-mobile-web-app-title" content="Libreddit">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="default">
|
|
<!-- Android -->
|
|
<meta name="theme-color" content="#2A3443">
|
|
<meta name="mobile-web-app-capable" content="yes">
|
|
<!-- iOS Logo -->
|
|
<link href="/touch-icon-iphone.png" rel="apple-touch-icon">
|
|
<!-- PWA Manifest -->
|
|
<link rel="manifest" type="application/json" href="/manifest.json">
|
|
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico">
|
|
<link rel="stylesheet" type="text/css" href="/style.css">
|
|
{% endblock %}
|
|
</head>
|
|
<body class="
|
|
{% if prefs.layout != "" %}{{ prefs.layout }}{% endif %}
|
|
{% if prefs.wide == "on" %} wide{% endif %}
|
|
{% if prefs.theme != "system" %} {{ prefs.theme }}{% endif %}">
|
|
<!-- NAVIGATION BAR -->
|
|
<nav>
|
|
<div id="logo">
|
|
<a id="libreddit" href="/">
|
|
<span id="lib">lib</span><span id="reddit">reddit.</span>
|
|
</a>
|
|
<span id="version">v{{ env!("CARGO_PKG_VERSION") }}</span>
|
|
{% block subscriptions %}{% endblock %}
|
|
</div>
|
|
{% block search %}{% endblock %}
|
|
<div id="links">
|
|
<a id="settings_link" href="/settings">settings</a>
|
|
<a id="code" href="https://github.com/spikecodes/libreddit">code</a>
|
|
</div>
|
|
</nav>
|
|
|
|
<!-- MAIN CONTENT -->
|
|
{% block body %}
|
|
<main>
|
|
{% block content %}
|
|
{% endblock %}
|
|
</main>
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|