blob: c60126e759c08d0356b265cc3b8aa647b5995089 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<html lang="en">
<head>
<title>{{ title }}</title>
<link rel="StyleSheet" href="{{ url_for('.highlight_stylesheet') }}" type="text/css">
<link rel="StyleSheet" href="{{ url_for('static', filename='paste.css') }}" type="text/css">
<script type="text/javascript" src="{{ url_for('static', filename='view.js') }}"></script>
</head>
<body>
{% if rendered %}
<div class="paste-rendered">
{% endif %}
{{ text|safe }}
{% if rendered %}
</div>
{% endif %}
</body>
</html>
|