summaryrefslogtreecommitdiff
path: root/pastepy/templates/view.html
diff options
context:
space:
mode:
Diffstat (limited to 'pastepy/templates/view.html')
-rw-r--r--pastepy/templates/view.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/pastepy/templates/view.html b/pastepy/templates/view.html
new file mode 100644
index 0000000..b0b114c
--- /dev/null
+++ b/pastepy/templates/view.html
@@ -0,0 +1,28 @@
+{% extends "base.html" %}
+{% block head %}
+ <link rel="StyleSheet" href="{{ url_for('.highlight_stylesheet') }}" type="text/css">
+ <script type="text/javascript" src="{{ url_for('static', filename='view.js') }}"></script>
+{% endblock %}
+{% block content %}
+ <p><a href="/">New paste</a></p>
+ <div id="paste">
+ <h3>{{ pastetitle }}</h3>
+ <div id="info">Pasted by <span id="nick">{{ nick }}</span> on <span id="date">{{date }}</span>
+ {% if syntax %} as <span id="syntax-type">{{ syntax }}</span>{% endif %}
+ </div>
+ <div id="alt-links">
+ {% if hash %}
+ <a href="/raw/{{ hash }}">Download as plain text</a>
+ &mdash;
+ <a href="/full/{{ hash }}">View in fullscreen</a>
+ {% endif %}
+ </div>
+ {% if rendered %}
+ <div class="paste-rendered">
+ {% endif %}
+ {{ text|safe }}
+ {% if rendered %}
+ </div>
+ {% endif %}
+ </div>
+{% endblock %}