Remove whitespace that messed with clean copy+pastes
Diff
templates/base.html | 5 +----
templates/paste.html | 9 ++++++---
2 files changed, 5 insertions(+), 9 deletions(-)
@@ -22,8 +22,5 @@
{% endblock styles %}
</style>
</head>
<body>
{% block content %}
{% endblock content %}
</body>
<body>{% block content %}{% endblock content %}</body>
</html>
@@ -6,11 +6,10 @@
width: 100%;
margin: 0;
overflow: scroll;
font-family: Courier;
line-height: 1.1;
font-family: inherit;
font-size: 1rem;
line-height: inherit;
}
{% endblock styles %}
{% block content %}
<pre><code>{{ content|safe }}</code></pre>
{% endblock content %}
{% block content %}<pre><code>{{ content|safe }}</code></pre>{% endblock content %}