{% extends "layout.html" %} {% block title %}Content information{% endblock %} {% block content %} {% if message is not none %}

{{ message }}

{% endif %} {% if content is not none %} {% for key in ['sha1', 'sha256', 'sha1_git', 'status', 'length', 'ctime', 'licenses', 'language', 'mimetype', 'encoding'] %}
{{ key }}
{{ content[key] }}
{% endfor %} {% if content['data_url'] is not none %}
data_url
Download data
{% endif %} {% if content['ctags'] is not none %}
ctags
{% for ctag_row in content['ctags'] %} {% for ctag in ctag_row %} {% endfor %} {% endfor %}
{{ ctag | safe }} 
{% endif %} {% if content['data'] is not none %}
data
{{ content['data'] | highlight_source }}
{% endif %} {% if 'decoding_failures' in content %}
(some decoding errors)
{% endif %} {% endif %} {% endblock %}