diff options
Diffstat (limited to 'pastepy/templates/full.html')
-rw-r--r-- | pastepy/templates/full.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/pastepy/templates/full.html b/pastepy/templates/full.html new file mode 100644 index 0000000..c60126e --- /dev/null +++ b/pastepy/templates/full.html @@ -0,0 +1,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> |