redsunlib/templates/base.html

41 lines
1.3 KiB
HTML
Raw Normal View History

2020-11-22 16:29:05 -08:00
<!DOCTYPE html>
<html lang="en">
<head>
{% block head %}
2020-12-20 17:45:26 -08:00
<title>{% block title %}Libreddit{% endblock %}</title>
2020-12-21 08:38:24 -08:00
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
2020-11-22 16:29:05 -08:00
<meta name="description" content="View on Libreddit, an alternative private front-end to Reddit.">
2020-12-05 20:54:43 -08:00
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2021-01-12 20:18:20 -08:00
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico">
2021-01-29 14:39:03 -08:00
<link rel="stylesheet" type="text/css" href="/style.css">
2020-11-22 16:29:05 -08:00
{% endblock %}
2020-12-31 15:54:13 -08:00
</head>
2021-01-10 18:15:34 -08:00
<body class="
{% if prefs.layout != "" %}{{ prefs.layout }}{% endif %}
{% if prefs.wide == "on" %} wide{% endif %}
2021-01-17 18:11:36 -08:00
{% if prefs.theme != "system" %} {{ prefs.theme }}{% endif %}">
2021-01-03 19:44:44 -08:00
<!-- NAVIGATION BAR -->
2020-12-20 17:45:26 -08:00
<nav>
2021-01-05 18:04:49 -08:00
<p 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>
2021-01-05 18:16:32 -08:00
<a id="settings_link" href="/settings">settings</a>
2021-01-05 18:04:49 -08:00
</p>
2020-12-31 15:54:13 -08:00
{% block search %}{% endblock %}
2021-01-17 13:24:44 -08:00
<a id="code" href="https://github.com/spikecodes/libreddit">code</a>
2020-12-20 17:45:26 -08:00
</nav>
2021-01-30 21:21:54 +11:00
{% block subscriptions %}{% endblock %}
2021-01-30 19:33:38 +11:00
2021-01-03 19:44:44 -08:00
<!-- MAIN CONTENT -->
2020-12-08 09:58:36 -08:00
{% block body %}
2020-11-22 16:29:05 -08:00
<main>
{% block content %}
{% endblock %}
</main>
{% endblock %}
</body>
</html>