16 lines
459 B
Handlebars
16 lines
459 B
Handlebars
<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> |