pastebin/templates/base.html.tera

25 lines
735 B
Plaintext

<!DOCTYPE html>
<html lang=en>
<meta charset=utf-8>
<meta name=viewport content="width=device-width, initial-scale=1">
<title>p.ishan.pw</title>
{{ css_stylesheet() | safe }}
<meta name=description content="{% block description %}Compile and share code{% endblock description %}">
<script type=module src="{{ js_path() }}"></script>
<header id=header>
<a href="/">
<h1>pastebin<small>.run</small></h1>
</a>
<nav id="menu-buttons">
<ul>
<!--TODO: do not hard code -->
<li><a href="https://p.ishan.pw/api">API</a
><li><a href="https://github.com/pastebinrun/pastebinrun/">Source code</a
></ul>
</nav>
</header>
<main>
{% block content %}
{% endblock %}
</main>