pastebin/templates/base.html

22 lines
719 B
HTML
Raw Normal View History

2019-03-02 16:35:05 +00:00
<!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">
2019-03-13 08:54:35 +00:00
<meta name=description content="Pastebin.run is a website for privately storing and sharing text online.">
2019-03-02 16:35:05 +00:00
<header>
2019-03-15 07:39:49 +00:00
<div>
<a href="/">
<h1>pastebin<small>.run</small></h1>
</a>
</div>
2019-03-02 16:35:05 +00:00
</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>