{% extends 'xprez/contents/base.html' %} {% load thumbnail xprez static %} {% block content %}
{% 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 %}