2013-04-03 11:04:23 +00:00
|
|
|
{% extends "app/website/templates/html/page.html" %}
|
2013-03-08 05:30:18 +00:00
|
|
|
|
|
|
|
{% set title="Blog Writers" %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="span12">
|
|
|
|
<h2 id="blog-title">Blog Writers</h2>
|
2013-03-11 12:27:57 +00:00
|
|
|
{% if writers_introduction %}
|
|
|
|
<p>{{ writers_introduction }}</p>
|
|
|
|
{% endif %}
|
2013-03-08 05:30:18 +00:00
|
|
|
<hr>
|
|
|
|
{% for blogger_info in bloggers %}
|
2013-04-03 11:04:23 +00:00
|
|
|
{% include "app/website/templates/html/blogger.html" %}
|
2013-03-08 05:30:18 +00:00
|
|
|
{% endfor %}
|
|
|
|
</div>
|
2013-04-03 11:04:23 +00:00
|
|
|
{% include 'app/website/templates/html/blog_footer.html' %}
|
2013-03-08 05:30:18 +00:00
|
|
|
{% endblock %}
|