pastebin/templates/base.html
2019-03-15 08:39:57 +01:00

27 lines
830 B
HTML

<!DOCTYPE html>
<meta charset=utf-8>
<meta name=viewport content="width=device-width, initial-scale=1">
<title>pastebin.run</title>
<link rel=stylesheet href="/static/codemirror.css">
<link rel=stylesheet href="/static/style.css">
<meta name=description content="Pastebin.run is a website for privately storing and sharing text online.">
<header>
<div>
<a href="/">
<h1>pastebin<small>.run</small></h1>
</a>
<nav>
<ul>
<li><a href="/about">about</a>
</ul>
</nav>
</div>
</header>
<article>
{% block content %}{% endblock content %}
</article>
<script src="/static/codemirror.js"></script>
<script src="/static/addon/mode/loadmode.js"></script>
<script src="/static/addon/mode/simple.js"></script>
<script src="/static/index.js"></script>