{% extends "front_base.html" %} {% block title %}: {{ document.title }}{% endblock %} {% block content %}

{{ document.title }}

{% if document.author %}

{{ document.author }}

{% endif %} {% if document.published %}

Published: {{ document.published }}

{% endif %} {% if document.tags.count > 0 %}

Tags: {% for tag in document.tags.all %}
  • {{ tag.name }}
  • {% endfor %}

    {% endif %} {% if document.description %}
    {% if document.url %}Description{% else %}Content{% endif %}:

    {{ document.html_description | safe }}

    {% endif %} {% if document.public or can_see_hidden %} {% if document.is_local_pdf %} {% else %} {% endif %} {% else %} {% endif %} {% if document.related.exists %}

    Related documents

    {% endif %}
    {% endblock %} {% block meta-og %} The /-\ pile: {{ document.title }} {% endblock %}