17 lines
372 B
HTML
17 lines
372 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block bodyClass %}paste{% endblock %}
|
||
|
|
||
|
{% block header %}
|
||
|
<h1>{{title}}</h1>
|
||
|
<div class="action-buttons">
|
||
|
<a role="button" href="/p/{{id}}/raw">Raw</a>
|
||
|
<button class="jsonly" onclick="copyPasteContent()">Copy</button>
|
||
|
</div>
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block main %}
|
||
|
<pre id="paste-content">{{content}}</pre>
|
||
|
{% call super() %}
|
||
|
{% endblock %}
|