summaryrefslogtreecommitdiffstats
path: root/templates/file.md
blob: e82f1c9adf1310a11d50909ec5186565f56f191c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
{% include '_head.md' %}

{% include '_nav.md' %}

{% include '_breadcrumbs.md' %}

{% if type == 'text' %}
```{{ file_extension }}
{{ content }}
```
{% elif type == 'image' %}
![](data:image/png;base64,{{ content }})
{% elif type == 'empty' %}
File is empty.
{% else %}
Can't display binary file.
{% endif %}