pastebin/templates/base.html.tera

26 lines
803 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>
<div>
<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://gitlab.com/pastebinrun/pastebinrun">Source code</a
></ul>
</nav>
</div>
</header>
<article id=article>
{% block content %}
{% endblock %}
2021-06-13 20:53:04 +00:00
</article>