added writers page

This commit is contained in:
Rushabh Mehta
2013-03-08 11:00:18 +05:30
parent a2deb68776
commit 1dd330177d
7 changed files with 54 additions and 16 deletions

View File

@@ -0,0 +1,14 @@
{% extends "html/page.html" %}
{% set title="Blog Writers" %}
{% block content %}
<div class="span12">
<h2 id="blog-title">Blog Writers</h2>
<hr>
{% for blogger_info in bloggers %}
{% include "html/blogger.html" %}
{% endfor %}
</div>
{% include 'html/blog_footer.html' %}
{% endblock %}