13 lines
270 B
Handlebars
13 lines
270 B
Handlebars
{{#if fileLoaded}}
|
|
{{#if isBinary}}
|
|
{{#if isImage}}
|
|
<img src={{objectURL}} alt={{metaData.name}}>
|
|
{{else}}
|
|
<p>No preview available for this content type.</p>
|
|
{{/if}}
|
|
{{/if}}
|
|
|
|
{{#if isText}}
|
|
<code>{{fileContent}}</code>
|
|
{{/if}}
|
|
{{/if}} |