Add junk drawer

This commit is contained in:
2024-10-01 16:57:19 -06:00
parent 7fae07b3c3
commit e021be16a3
10 changed files with 311 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<div>
<h1>Junk Drawer Item</h1>
<p>The junk drawer item was uploaded {{lastModified}}</p>
<h2>Description</h2>
<p>{{description}}</p>
<p>Right-click copy: <a href='/junk-drawer/{{slug}}'>{{slug}}</a></p>
{{#if items}}
<p>Files:</p>
<ul>
{{#each items}}
<li><a href='/junk-drawer/{{../slug}}/{{filename}}'>{{filename}}</a></li>
{{/each}}
</ul>
{{/if}}
<p><a href='/junk-drawer'>Upload another file</a></p>
</div>