blob: 5f0836d4f2c7c81ac2b97a47a87bef8ff4f40226 [file] [log] [blame]
Rushabh Mehta3023a8f2013-04-03 16:34:23 +05301{% extends "app/website/templates/html/page.html" %}
Rushabh Mehta1dd33012013-03-08 11:00:18 +05302
3{% set title="Blog Writers" %}
4
5{% block content %}
Rushabh Mehtad6c82352013-04-18 17:43:21 +05306<div class="col-span-12">
Rushabh Mehta1dd33012013-03-08 11:00:18 +05307 <h2 id="blog-title">Blog Writers</h2>
Rushabh Mehtab33693d2013-03-11 17:57:57 +05308 {% if writers_introduction %}
9 <p>{{ writers_introduction }}</p>
10 {% endif %}
Rushabh Mehta1dd33012013-03-08 11:00:18 +053011 <hr>
12 {% for blogger_info in bloggers %}
Rushabh Mehta3023a8f2013-04-03 16:34:23 +053013 {% include "app/website/templates/html/blogger.html" %}
Rushabh Mehta1dd33012013-03-08 11:00:18 +053014 {% endfor %}
15</div>
Rushabh Mehta3023a8f2013-04-03 16:34:23 +053016{% include 'app/website/templates/html/blog_footer.html' %}
Rushabh Mehta1dd33012013-03-08 11:00:18 +053017{% endblock %}