django-simplecms/example/templates/images.html

16 wiersze
423 B
HTML

{% load thumbnail i18n cms %}
<section class="images" id="{{section.title|slugify}}">
<div class="images">
{% for image in section.images.all %}
<div class="image">
<div>
<img src="{% thumbnail image.image 700x700 %}">
</div>
</div>
{% endfor %}
</div>
{% editsection '<img src="/static/cms/edit.png">' %}
</section>