{% extends "base.html" %} {% block title %}{{ path }} — Experiment {{ exp_id }} — ABREKA{% endblock %} {% block extra_css %} {{ pygments_css }} .highlight { border-radius: 6px; } .highlight pre { margin: 0; padding: 12px; overflow-x: auto; font-size: 12px; line-height: 1.6; } .file-meta { display: flex; gap: 16px; align-items: center; margin-bottom: 12px; font-size: 13px; } .file-meta .label { color: var(--muted); } .truncation-warning { background: #fef3c7; border: 1px solid #f59e0b; border-radius: 6px; padding: 8px 12px; font-size: 13px; margin-bottom: 12px; color: #92400e; } .binary-notice { background: var(--primary-light); border-radius: 6px; padding: 24px; text-align: center; color: var(--muted); font-size: 14px; } {% endblock %} {% block content %}

{{ path }}

Language: {{ fc.language }} Size: {{ fc.original_size | filesize }}
{% if fc.is_image %}
{{ path }}
{% elif fc.is_binary %}
Binary file ({{ fc.original_size | filesize }}) — cannot be displayed.
{% else %} {% if fc.truncated %}
File truncated — showing first 100 KB of {{ fc.original_size | filesize }}.
{% endif %} {{ fc.highlighted_html | safe }} {% endif %}
{% endblock %}