32 lines
715 B
HTML
32 lines
715 B
HTML
{% extends 'page.html' %}
|
|
|
|
{% block twittercard %}summary{% endblock %}
|
|
|
|
{% block precontent %}
|
|
{% endblock %}
|
|
|
|
{% block postcontent %}
|
|
<hr />
|
|
<div class="section">
|
|
<h1>Uredniki</h1>
|
|
<div class="ui three column stackable grid">
|
|
{% for editor in editors %}
|
|
<div class="column">
|
|
{% include 'author_bio.html' with author=editor only %}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
<hr />
|
|
<div class="section">
|
|
<h1>Avtorji</h1>
|
|
<div class="ui three column stackable grid">
|
|
{% for contributor in contributors %}
|
|
<div class="column">
|
|
{% include 'author_bio.html' with author=contributor only %}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|