Anand Doshi | 51146c0 | 2012-07-12 18:41:12 +0530 | [diff] [blame] | 1 | {% extends "html/page.html" %} |
Anand Doshi | 10bcf5e | 2012-06-26 18:54:10 +0530 | [diff] [blame] | 2 | |
Anand Doshi | 51146c0 | 2012-07-12 18:41:12 +0530 | [diff] [blame] | 3 | {% block javascript %} |
| 4 | {% include "js/blog.js" %} |
Rushabh Mehta | 5f21cc0 | 2012-08-03 14:13:30 +0530 | [diff] [blame] | 5 | {% include "js/blog_subscribe.js" %} |
Anand Doshi | 51146c0 | 2012-07-12 18:41:12 +0530 | [diff] [blame] | 6 | {% endblock %} |
Anand Doshi | 10bcf5e | 2012-06-26 18:54:10 +0530 | [diff] [blame] | 7 | |
| 8 | {% block css %} |
Anand Doshi | 51146c0 | 2012-07-12 18:41:12 +0530 | [diff] [blame] | 9 | {% include "css/blog.css" %} |
Anand Doshi | 10bcf5e | 2012-06-26 18:54:10 +0530 | [diff] [blame] | 10 | {% endblock %} |
| 11 | |
Anand Doshi | 51146c0 | 2012-07-12 18:41:12 +0530 | [diff] [blame] | 12 | {% block title %}Blog{% endblock %} |
| 13 | |
Anand Doshi | 10bcf5e | 2012-06-26 18:54:10 +0530 | [diff] [blame] | 14 | {% block content %} |
| 15 | <div class="layout-wrapper layout-wrapper-background"> |
| 16 | <div class="web-content" id="content-blog"> |
| 17 | |
| 18 | <div class="layout-main-section"> |
| 19 | <h1>Blog</h1> |
| 20 | <br> |
| 21 | <div id="blog-list"> |
| 22 | <!-- blog list will be generated dynamically --> |
| 23 | </div> |
| 24 | </div> |
| 25 | |
| 26 | <div class="layout-side-section"> |
Rushabh Mehta | 5f21cc0 | 2012-08-03 14:13:30 +0530 | [diff] [blame] | 27 | {% block blog_subscribe %} |
| 28 | {% include "html/blog_subscribe.html" %} |
| 29 | {% endblock %} |
Anand Doshi | 10bcf5e | 2012-06-26 18:54:10 +0530 | [diff] [blame] | 30 | </div> |
| 31 | <div style="clear: both"></div> |
| 32 | </div> |
| 33 | </div> |
| 34 | {% endblock %} |