Rushabh Mehta | f2b17d9 | 2013-02-21 10:49:37 +0530 | [diff] [blame] | 1 | {% extends "html/base.html" %} |
| 2 | |
| 3 | {% block body %} |
| 4 | <header> |
| 5 | </header> |
Rushabh Mehta | 78db3ec | 2013-02-21 14:25:30 +0530 | [diff] [blame] | 6 | <div class="container"> |
Rushabh Mehta | 1aff4c3 | 2013-03-12 11:22:30 +0530 | [diff] [blame] | 7 | {% if banner_html %}<div class="row" style="margin-top: 30px;"> |
| 8 | <div class="span12">{{ banner_html }}</div> |
| 9 | </div>{% endif %} |
Rushabh Mehta | 78db3ec | 2013-02-21 14:25:30 +0530 | [diff] [blame] | 10 | <div class="outer"> |
Rushabh Mehta | 770e793 | 2013-03-11 18:30:05 +0530 | [diff] [blame] | 11 | {% include "html/navbar.html" %} |
Rushabh Mehta | 78db3ec | 2013-02-21 14:25:30 +0530 | [diff] [blame] | 12 | <div class="content row" id="page-{{ name }}" style="display: block;"> |
| 13 | {% block content %} |
| 14 | {% endblock %} |
Rushabh Mehta | f2b17d9 | 2013-02-21 10:49:37 +0530 | [diff] [blame] | 15 | </div> |
| 16 | </div> |
Rushabh Mehta | f2b17d9 | 2013-02-21 10:49:37 +0530 | [diff] [blame] | 17 | </div> |
Rushabh Mehta | 770e793 | 2013-03-11 18:30:05 +0530 | [diff] [blame] | 18 | {% include "html/footer.html" %} |
Rushabh Mehta | f2b17d9 | 2013-02-21 10:49:37 +0530 | [diff] [blame] | 19 | |
| 20 | {% endblock %} |