summaryrefslogtreecommitdiffstats
path: root/templates/file.md
blob: 28f458a13eeff7dd0eea111c86418e3d0eb1a171 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% include '_head.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 %}