17 lines
447 B
HTML
17 lines
447 B
HTML
{% extends "app/website/templates/html/page.html" %}
|
|
|
|
{% set title="Blog Writers" %}
|
|
|
|
{% block content %}
|
|
<div class="col col-lg-12">
|
|
<h2 id="blog-title">Blog Writers</h2>
|
|
{% if writers_introduction %}
|
|
<p>{{ writers_introduction }}</p>
|
|
{% endif %}
|
|
<hr>
|
|
{% for blogger_info in bloggers %}
|
|
{% include "app/website/templates/html/blogger.html" %}
|
|
{% endfor %}
|
|
</div>
|
|
{% include 'app/website/templates/html/blog_footer.html' %}
|
|
{% endblock %} |