{% extends 'xprez/contents/base.html' %} {% load thumbnail xprez static %} {% block css_class_extra %}xprez-quote xprez-quote-cols-{{ content.quotes.all|length }} {% if content.box %}xprez-quote-boxed{% endif %}{% endblock %} {% block content_in %}
{% if content.title %}

{{ content.title }}

{% endif %} {% for quote in content.quotes.all %}
{% if quote.image %} {% thumbnail quote.image "210x210" crop="25%" as thumb %} {% endthumbnail %} {% else %} {% static "xprez/img/avatar.svg" as avatar_url %} {% endif %}
{{ quote.name }}
{{ quote.job_title }}
{% if quote.title %}

{{ quote.title }}

{% endif %}

{{ quote.quote }}

{% endfor %}
{% endblock %}