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.
 
 
 
 
 
 

28 lines
1014 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="{{ person.visual.url }}" 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 class="articles">
{% for article in person.blog_post_author.all %}
<li><a href="{{ article.get_absolute_url }}">{{ article.title }}</a>
&nbsp;<small class="date">{{ article.date_published|date:"DATE_FORMAT" }}</small></li>
{% endfor %}
</ul>
{% endspaceless %}
{% endif %}
</div>
</div>