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>
|
|
|
|
<meta http-equiv="Referrer-Policy" content="no-referrer">
|
2021-01-03 04:50:23 +00:00
|
|
|
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; style-src 'self' 'unsafe-inline'; base-uri 'none'; form-action 'self';">
|
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">
|
2020-11-23 00:29:05 +00:00
|
|
|
<link rel="stylesheet" href="/style.css">
|
|
|
|
{% endblock %}
|
2020-12-31 23:54:13 +00:00
|
|
|
</head>
|
2021-01-02 06:21:43 +00:00
|
|
|
<body>
|
2020-12-21 01:45:26 +00:00
|
|
|
<nav>
|
2021-01-01 00:45:10 +00:00
|
|
|
<a id="logo" href="/"><span id="lib">lib</span>reddit. <span id="version">v{{ env!("CARGO_PKG_VERSION") }}</span></a>
|
2020-12-31 23:54:13 +00:00
|
|
|
{% block search %}{% endblock %}
|
2020-11-23 00:29:05 +00:00
|
|
|
<a id="github" href="https://github.com/spikecodes/libreddit">GITHUB</a>
|
2020-12-21 01:45:26 +00:00
|
|
|
</nav>
|
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>
|