39 lines
1.1 KiB
Handlebars
39 lines
1.1 KiB
Handlebars
<html>
|
|
|
|
</html>
|
|
|
|
<head>
|
|
<meta charset='utf-8' />
|
|
<title>Junk Drawer</title>
|
|
<script src='https://cdn.tailwindcss.com'></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div>
|
|
<h1 class="text-xl">Junk Drawer Item</h1>
|
|
<p>The junk drawer item was uploaded {{lastModified}}</p>
|
|
<h2>Description</h2>
|
|
<p class="bg-slate-100 px-2 py-4">{{description}}</p>
|
|
<p>Right-click copy: <a class="text-blue-500 underline" href='/junk-drawer/{{slug}}'>{{slug}}</a></p>
|
|
{{#if items}}
|
|
<p class="text-lg">Files:</p>
|
|
<div class="list-disc list-inside ml-1">
|
|
{{#each items}}
|
|
<div>
|
|
<a target="_blank" class="text-emerald-600" href='/junk-drawer/{{../slug}}/{{filename}}'>
|
|
<p>
|
|
{{filename}}
|
|
</p>
|
|
{{#if isImage}}
|
|
<img height="150" width="150" src='/junk-drawer/{{../slug}}/{{filename}}' alt='{{filename}}' />
|
|
{{/if}}
|
|
</a>
|
|
</div>
|
|
{{/each}}
|
|
</div>
|
|
{{/if}}
|
|
<p><a class="text-blue-500 underline" href='/junk-drawer'>Upload another file</a></p>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |