libreddit/templates/base.html

41 lines
1.3 KiB
HTML
Raw Normal View History

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