Rushabh Mehta | 3023a8f | 2013-04-03 16:34:23 +0530 | [diff] [blame] | 1 | {% extends "app/website/templates/html/page.html" %} |
Rushabh Mehta | 1dd3301 | 2013-03-08 11:00:18 +0530 | [diff] [blame] | 2 | |
| 3 | {% set title="Blog Writers" %} |
| 4 | |
| 5 | {% block content %} |
Rushabh Mehta | 4a2f0f8 | 2013-05-22 11:57:05 +0530 | [diff] [blame] | 6 | <div class="col col-lg-12"> |
Rushabh Mehta | 1dd3301 | 2013-03-08 11:00:18 +0530 | [diff] [blame] | 7 | <h2 id="blog-title">Blog Writers</h2> |
Rushabh Mehta | b33693d | 2013-03-11 17:57:57 +0530 | [diff] [blame] | 8 | {% if writers_introduction %} |
| 9 | <p>{{ writers_introduction }}</p> |
| 10 | {% endif %} |
Rushabh Mehta | 1dd3301 | 2013-03-08 11:00:18 +0530 | [diff] [blame] | 11 | <hr> |
| 12 | {% for blogger_info in bloggers %} |
Rushabh Mehta | 3023a8f | 2013-04-03 16:34:23 +0530 | [diff] [blame] | 13 | {% include "app/website/templates/html/blogger.html" %} |
Rushabh Mehta | 1dd3301 | 2013-03-08 11:00:18 +0530 | [diff] [blame] | 14 | {% endfor %} |
| 15 | </div> |
Rushabh Mehta | 3023a8f | 2013-04-03 16:34:23 +0530 | [diff] [blame] | 16 | {% include 'app/website/templates/html/blog_footer.html' %} |
Rushabh Mehta | 1dd3301 | 2013-03-08 11:00:18 +0530 | [diff] [blame] | 17 | {% endblock %} |