pastebin/templates/base.html.tera

24 lines
730 B
Plaintext
Raw Normal View History

2021-06-13 18:43:16 +00:00
<!DOCTYPE html>
2022-05-08 07:51:43 +00:00
<html lang=en>
2021-06-13 18:43:16 +00:00
<meta charset=utf-8>
<meta name=viewport content="width=device-width, initial-scale=1">
<title>pastebin.run</title>
2022-05-07 16:47:33 +00:00
{{ css_stylesheet() | safe }}
2021-06-13 20:53:04 +00:00
<meta name=description content="{% block description %}Compile and share code in multiple programming languages{% endblock description %}">
<script type=module src="{{ js_path() }}"></script>
2021-06-13 18:43:16 +00:00
<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
2022-05-28 17:21:28 +00:00
><li><a href="https://github.com/pastebinrun/pastebinrun/">Source code</a
></ul>
</nav>
2021-06-13 18:43:16 +00:00
</header>
2022-05-08 10:40:44 +00:00
<main>
2021-06-13 18:43:16 +00:00
{% block content %}
{% endblock %}
2022-05-08 10:40:44 +00:00
</main>