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