summaryrefslogtreecommitdiff
path: root/pastepy/templates/full.html
blob: 743bed987f69c44d40902982fd22a16bd918c7dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
	<title>{{ config.PASTEBIN_NAME }}{% if title %} &ndash; {{ title }}{% endif %}</title>
	<link rel="StyleSheet" href="{{ url_for('static', filename='css/bootstrap.flatly.min.css') }}" type="text/css" id="bootstrap-css">
	<link rel="StyleSheet" href="{{ url_for('static', filename='css/paste.css') }}" type="text/css" id="pastepy-css">
	<link rel="StyleSheet" href="{{ url_for('.highlight_stylesheet') }}" type="text/css" id="pygments-css">
	<script src="{{ url_for('static', filename='js/theme.js') }}" type="text/javascript"></script>
</head>
<body>
{% if rendered %}
<div class="container-fluid">
{% endif %}
{{ text|safe }}
{% if rendered %}
</div>
{% endif %}
</body>
</html>