41 lines
1.3 KiB
HTML
41 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{ paste.title or 'PasteBin' }} - PasteBin</title>
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<header>
|
|
<h1><a href="/">PasteBin</a></h1>
|
|
</header>
|
|
|
|
<div class="paste-view">
|
|
{% if paste.title %}
|
|
<h2>{{ paste.title }}</h2>
|
|
{% endif %}
|
|
<div class="meta">
|
|
<span>ID: <code>{{ paste_id }}</code></span>
|
|
<span>File: {{ paste.filename }}</span>
|
|
<span>Created: {{ paste.created_at[:19] | replace('T', ' ') }}</span>
|
|
{% if paste.expires_at %}
|
|
<span>Expires: {{ paste.expires_at[:19] | replace('T', ' ') }}</span>
|
|
{% else %}
|
|
<span>Never expires</span>
|
|
{% endif %}
|
|
</div>
|
|
|
|
<div class="content-wrapper file-info">
|
|
<p>This is a binary file. Download it to view.</p>
|
|
<p>Type: {{ paste.mimetype }}</p>
|
|
</div>
|
|
|
|
<div class="actions">
|
|
<a href="/{{ paste_id }}/download" class="btn btn-primary">Download</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |