pdnew/themes/default/templates/renderable/image.html

22 lines
637 B
HTML

{% extends 'default/templates/renderable/upload.html' %}
{% block content %}
{% if not content.published %}
<span class="warning unpublished" title="This {{ content._lowerclass }} has NOT been published."></span>
{% endif %}
<img
src="{{ content.url('raw') }}"
{% if content.description %}
alt="{{ content.description }}"
title="{{ content.description }}"
{% endif %}
/>
{% if content.description %}
<div class="description">{{ content.description.render() }}</div>
{% endif %}
{% block fileinfo %}{{ super() }}{% endblock %}
{% endblock %}