pastebin/templates/base.html.tera
2022-05-28 21:51:31 +02:00

24 lines
730 B
Plaintext

<!DOCTYPE html>
<html lang=en>
<meta charset=utf-8>
<meta name=viewport content="width=device-width, initial-scale=1">
<title>pastebin.run</title>
{{ css_stylesheet() | safe }}
<meta name=description content="{% block description %}Compile and share code in multiple programming languages{% 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>
<li><a href="https://pastebin.run/api">API</a
><li><a href="https://github.com/pastebinrun/pastebinrun/">Source code</a
></ul>
</nav>
</header>
<main>
{% block content %}
{% endblock %}
</main>