bin/templates/pretty.html.tera
2022-04-26 11:23:03 -05:00

36 lines
809 B
Text

{% extends "base.html" %}
{% 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 id="wrapBtn" onclick="wrapClicked()">&#9166; Wrap</button>
<button id="forkBtn" onclick="forkClicked()">&#x2442; Fork</button>
<button id="newPasteBtn" onclick="newPasteClicked()">&#43; New</button>
<a href="/r/{{title}}">&#128463; Show Raw</a>
</div>
</div>
<script src="/static/js/pretty.js"></script>
{% endblock body %}