summaryrefslogtreecommitdiff
path: root/templates/view.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'templates/view.tmpl')
-rw-r--r--templates/view.tmpl29
1 files changed, 0 insertions, 29 deletions
diff --git a/templates/view.tmpl b/templates/view.tmpl
deleted file mode 100644
index a23c36e..0000000
--- a/templates/view.tmpl
+++ /dev/null
@@ -1,29 +0,0 @@
-#extends templates.base
-#def head
- <link rel="StyleSheet" href="/highlight_stylesheet" type="text/css">
- <script type="text/javascript" src="/static/view.js"></script>
-#end def
-#def 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>#slurp
-#if $syntax
- as <span id="syntax-type">$syntax</span>#slurp
-#end if
-.
-</div>
- <div id="alt-links">
-#if $hash
- <a href="/raw/$hash">Download as plain text</a>
-#end if
- </div>
-#if $rendered
- <div class="paste-rendered">
-#end if
- $text
-#if $rendered
- </div>
-#end if
- </div>
-#end def