forked from czottmann/servus-theme-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (27 loc) · 1.43 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<meta content='IE=edge,chrome=1' http-equiv='X-UA-Compatible' />
<meta content='text/html' http-equiv='Content-Type' />
<meta content='width=device-width' name='viewport' />
<title>{{original_filename}} (Shared with Servus for Mac.)</title>
</head>
<body>
<ul>
<li>Original filename: {{original_filename}}</li>
<li>Relative link to file: {{file_link}}</li>
<li>Size in human readable format: {{file_size}}</li>
<li>Normalized file extension: {{file_ext}}</li>
<li>the file is an archive (zip, tgz, rar etc.): {{#is_archive}} YES {{/is_archive}}</li>
<li>the file is an audio file (mp3, m4a, wav etc.): {{#is_audio}} YES {{/is_audio}}</li>
<li>the file is a vcard file: {{#is_contact}} YES {{/is_contact}}</li>
<li>the file is an image (png, jpg, tiff, gif etc.): {{#is_image}} YES {{/is_image}}</li>
<li>the file is a recognized message (email, IM, and so on): {{#is_message}} YES {{/is_message}}</li>
<li>the file is a mixed content file, i.e. a PDF.: {{#is_pdf}} YES {{/is_pdf}}</li>
<li>the file is text document (html, rtf, mdown etc.): {{#is_text}} YES {{/is_text}}</li>
<li>the file is a video (mov, mpg etc.): {{#is_video}} YES {{/is_video}}</li>
<li>the file wasn't recognized as one of the types listed above: {{#is_unknown_type}} YES {{/is_unknown_type}}</li>
</ul>
</body>
</html>