15 lines
426 B
Handlebars
15 lines
426 B
Handlebars
<div>
|
|
<h1>Upload Result</h1>
|
|
<p>File uploaded successfully.</p>
|
|
<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 target="_blank" href='/junk-drawer/{{../slug}}/{{filename}}'>{{filename}}</a></li>
|
|
{{/each}}
|
|
</ul>
|
|
{{/if}}
|
|
<p><a href='/junk-drawer'>Upload another file</a></p>
|
|
</div> |