Rushabh Mehta | 3023a8f | 2013-04-03 16:34:23 +0530 | [diff] [blame] | 1 | {% extends "app/website/templates/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 %} |
Rushabh Mehta | 3023a8f | 2013-04-03 16:34:23 +0530 | [diff] [blame] | 4 | {% include "app/website/templates/js/blog.js" %} |
Anand Doshi | 51146c0 | 2012-07-12 18:41:12 +0530 | [diff] [blame] | 5 | {% endblock %} |
Anand Doshi | 10bcf5e | 2012-06-26 18:54:10 +0530 | [diff] [blame] | 6 | |
| 7 | {% block css %} |
Rushabh Mehta | 3023a8f | 2013-04-03 16:34:23 +0530 | [diff] [blame] | 8 | {% include "app/website/templates/css/blog.css" %} |
Anand Doshi | 10bcf5e | 2012-06-26 18:54:10 +0530 | [diff] [blame] | 9 | {% endblock %} |
| 10 | |
Rushabh Mehta | f2b17d9 | 2013-02-21 10:49:37 +0530 | [diff] [blame] | 11 | {% set title="Blog" %} |
Anand Doshi | 51146c0 | 2012-07-12 18:41:12 +0530 | [diff] [blame] | 12 | |
Anand Doshi | 10bcf5e | 2012-06-26 18:54:10 +0530 | [diff] [blame] | 13 | {% block content %} |
Rushabh Mehta | 4a2f0f8 | 2013-05-22 11:57:05 +0530 | [diff] [blame] | 14 | <div class="col col-lg-12"> |
Rushabh Mehta | b33693d | 2013-03-11 17:57:57 +0530 | [diff] [blame] | 15 | <h2 id="blog-title">{{ blog_title }}</h2> |
| 16 | {% if blog_introduction %} |
| 17 | <p>{{ blog_introduction }}</p> |
| 18 | {% endif %} |
| 19 | <h3 id="blot-subtitle" style="display:none;"></h3> |
Rushabh Mehta | 78db3ec | 2013-02-21 14:25:30 +0530 | [diff] [blame] | 20 | <br> |
Rushabh Mehta | bbbceb6 | 2013-03-11 16:12:56 +0530 | [diff] [blame] | 21 | <div class="progress progress-striped active"> |
Anand Doshi | 32f9f36 | 2013-06-13 16:11:03 +0530 | [diff] [blame] | 22 | <div class="progress-bar progress-bar-info" style="width: 100%;"></div> |
Rushabh Mehta | bbbceb6 | 2013-03-11 16:12:56 +0530 | [diff] [blame] | 23 | </div> |
Rushabh Mehta | 78db3ec | 2013-02-21 14:25:30 +0530 | [diff] [blame] | 24 | <div id="blog-list"> |
| 25 | <!-- blog list will be generated dynamically --> |
Anand Doshi | 10bcf5e | 2012-06-26 18:54:10 +0530 | [diff] [blame] | 26 | </div> |
Rushabh Mehta | 78db3ec | 2013-02-21 14:25:30 +0530 | [diff] [blame] | 27 | <div style="text-align: center;"> |
Rushabh Mehta | 74560b3 | 2013-05-27 14:47:56 +0530 | [diff] [blame] | 28 | <button id="next-page" class="btn btn-default" |
Rushabh Mehta | 78db3ec | 2013-02-21 14:25:30 +0530 | [diff] [blame] | 29 | style="display:none;">More...</button> |
| 30 | </div> |
| 31 | </div> |
Rushabh Mehta | 3023a8f | 2013-04-03 16:34:23 +0530 | [diff] [blame] | 32 | {% include 'app/website/templates/html/blog_footer.html' %} |
Anand Doshi | 10bcf5e | 2012-06-26 18:54:10 +0530 | [diff] [blame] | 33 | {% endblock %} |