bin/templates/pretty.html.tera

34 lines
644 B
Plaintext
Raw Normal View History

{% extends "base" %}
{% block styles %}
<style>
body {
padding: 10px;
}
pre {
margin: 0px;
font-family: 'Iosevka Web', monospace;
}
</style>
<link rel="stylesheet" href="/static/css/pretty.css">
{% endblock styles %}
{% block head %}
{% endblock head %}
{% block body %}
<div class="rootBox">
<div id="pasteContent">
{{ body | safe }}
</div>
<div class="topRightBox">
<button onclick="forkClicked()">&#x2442; Fork</button>
<button onclick="newPasteClicked()">&#43; New</button>
</div>
</div>
<script src="/static/js/pretty.js"></script>
{% endblock body %}