19 lines
No EOL
557 B
HTML
19 lines
No EOL
557 B
HTML
{% block title %} Blog Writers {% endblock %}
|
|
|
|
{% block header %}<h2>Blog Writers</h2>{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="writers-content">
|
|
{% if writers_introduction %}
|
|
<p>{{ writers_introduction }}</p>
|
|
{% endif %}
|
|
{% for blogger_info in bloggers %}
|
|
{% include "templates/includes/blogger.html" %}
|
|
{% if not loop.last %}<hr>{% endif %}
|
|
{% endfor %}
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block footer %}{% include "templates/includes/blog_footer.html" %}{% endblock %}
|
|
|
|
{% block sidebar %}{% include "templates/includes/sidebar.html" %}{% endblock %} |