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.
 
 
 
 
 
 

27 lines
970 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 267x401 crop subject_location=person.visual.subject_location %}" alt="{{ person.name }}" />
{% endif %}
</div>
<div class="col-sm-8">
<h1>{{ person.name }}</h1>
<h4><em>{{ person.function }}</em></h4>
{% if person.description %}<div class="people-desc">{{ person.description|safe }}</div>{% endif %}
{% if person.blog_post_author.all|length > 0 %}
{% spaceless %}
<h2>Статьи</h2>
<ul>
{% for article in person.blog_post_author.all %}
<li><a href="{{ article.get_absolute_url }}">{{ article.title }}</a></li>
{% endfor %}
</ul>
{% endspaceless %}
{% endif %}
</div>
</div>