You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
597 B
16 lines
597 B
{% load menu_tags aldryn_people_tags i18n thumbnail %}
|
|
|
|
{% show_breadcrumb 2 %}
|
|
|
|
<div class="plugin-people row">
|
|
<div class="col-sm-4">
|
|
{% if person.visual %}<p class="people-detail-visual">
|
|
<img src="{% thumbnail person.visual 250x375 crop subject_location=person.visual.subject_location %}" alt="{{ person.name }}" />
|
|
{% endif %}
|
|
</div>
|
|
<div class="col-sm-8">
|
|
<h2>{{ person.name }}</h2>
|
|
<h5><em>{{ person.function }}</em></h5>
|
|
{% if person.description %}<div class="people-desc">{{ person.description|safe }}</div>{% endif %}
|
|
</div>
|
|
</div> |