18 lines
No EOL
448 B
HTML
18 lines
No EOL
448 B
HTML
{% extends base_template %}
|
|
|
|
{% set title="Blog Writers" %}
|
|
|
|
{% block content %}
|
|
<div class="container content">
|
|
<h2 id="blog-title">Blog Writers</h2>
|
|
{% if writers_introduction %}
|
|
<p>{{ writers_introduction }}</p>
|
|
{% endif %}
|
|
<hr>
|
|
{% for blogger_info in bloggers %}
|
|
{% include "templates/includes/blogger.html" %}
|
|
{% if not loop.last %}<hr>{% endif %}
|
|
{% endfor %}
|
|
</div>
|
|
{% include 'templates/includes/blog_footer.html' %}
|
|
{% endblock %} |