{% if pastes %}
{% for p in pastes %}

{% if p.content and p.is_file %} {{ p.content | snippet(40) }} - {{ p.original_filename }} {% elif p.is_file %} {{ p.original_filename }} {% else %} {{ p.content | snippet(50) }} {% endif %}

{{ p.created_at }}

{% if p.file_size %} {{ p.file_size | format_size }} {% endif %}
{% if p.is_file %} {% if p.original_filename | is_image %}
{{ p.original_filename }}
{% elif p.original_filename.lower().endswith(('.mp4', '.webm', '.mov', '.avi', '.mkv', '.flv', '.wmv')) %}
{% elif p.original_filename.lower().endswith(('.mp3', '.wav', '.ogg', '.aac', '.flac')) %}

Audio File

{% elif p.original_filename.lower().endswith(('.pdf',)) %}

PDF Document

{% elif p.original_filename.lower().endswith(('.doc', '.docx')) %}

Word Document

{% elif p.original_filename.lower().endswith(('.xls', '.xlsx')) %}

Excel Spreadsheet

{% elif p.original_filename.lower().endswith(('.ppt', '.pptx')) %}

PowerPoint Presentation

{% else %}

{{ p.original_filename.split('.')[-1].upper() }} File

{% endif %} {% else %}
{{ p.content[:200] | e }}{% if p.content|length > 200 %}...{% endif %}
{% endif %}
{% if p.is_file %} Download {% else %} {% endif %}
{% endfor %}
{% else %}

No pastes found

Create your first paste above!

{% endif %}