17 lines
445 B
HTML
Raw Normal View History

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