diff options
author | Jon Bergli Heier <snakebite@jvnv.net> | 2019-03-15 18:45:47 +0100 |
---|---|---|
committer | Jon Bergli Heier <snakebite@jvnv.net> | 2019-03-15 18:45:47 +0100 |
commit | c57494ae405ffbdd8ec45f74ef04ea85895f1bf7 (patch) | |
tree | a0b888069205b7d8260c1862d300032a56b6fd30 /templates/view.html | |
parent | c5ebdf4428d9d9aab04cf6085a231ed6ea5bf0ab (diff) |
Port application to flask
Diffstat (limited to 'templates/view.html')
-rw-r--r-- | templates/view.html | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/templates/view.html b/templates/view.html deleted file mode 100644 index a1d00a7..0000000 --- a/templates/view.html +++ /dev/null @@ -1,28 +0,0 @@ -{% extends "base.html" %} -{% block head %} - <link rel="StyleSheet" href="/highlight_stylesheet" type="text/css"> - <script type="text/javascript" src="/static/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> - — - <a href="/full/{{ hash }}">View in fullscreen</a> - {% endif %} - </div> - {% if rendered %} - <div class="paste-rendered"> - {% endif %} - {{ text }} - {% if rendered %} - </div> - {% endif %} - </div> -{% endblock %} |