1
0
mirror of https://github.com/spikecodes/libreddit synced 2025-01-14 19:59:59 +01:00
libreddit/templates/base.html

29 lines
1.0 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>
<meta http-equiv="Referrer-Policy" content="no-referrer">
2020-12-20 21:49:31 -08: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 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">
2020-11-22 16:29:05 -08:00
<link rel="stylesheet" href="/style.css">
{% endblock %}
</head>
2020-12-20 21:49:31 -08:00
<body style="visibility: hidden;">
2020-12-20 17:45:26 -08:00
{% block navbar %}
<nav>
2020-12-05 21:29:25 -08:00
<a href="/"><span id="lib">lib</span>reddit. <span id="version">v{{ env!("CARGO_PKG_VERSION") }}</span></a>
2020-11-22 16:29:05 -08:00
<a id="github" href="https://github.com/spikecodes/libreddit">GITHUB</a>
2020-12-20 17:45:26 -08:00
</nav>
2020-11-22 16:29:05 -08:00
{% endblock %}
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>