{% extends "base.html" %} {% block content %}

File: {{ rel_path }}

{% if kind == 'markdown' %}
{{ html }}
{% elif kind == 'image' %}
{{ rel_path }}
{% elif kind == 'pdf' %}
{% elif kind == 'video' %}
{% elif kind == 'audio' %}
{% elif kind == 'text' %} {% if too_big %}

File is large ({{ size|filesizeformat(True) }}). Use Open raw or Download to view it.

{% else %}
{{ content }}
{% endif %} {% elif kind == 'binary' %}

This file type is not previewable. Use Open raw or Download.

{% elif kind == 'csv' %}
{{ html|safe }}
{% elif kind == 'excel' %}
{{ html|safe }}
{% endif %}
{% endblock %}