2012-07-12 18:41:12 +05:30
|
|
|
{% extends "html/page.html" %}
|
2012-06-26 18:54:10 +05:30
|
|
|
|
2012-07-12 18:41:12 +05:30
|
|
|
{% block javascript %}
|
|
|
|
{% include "js/blog.js" %}
|
|
|
|
{% endblock %}
|
2012-06-26 18:54:10 +05:30
|
|
|
|
|
|
|
{% block css %}
|
2012-07-12 18:41:12 +05:30
|
|
|
{% include "css/blog.css" %}
|
2012-06-26 18:54:10 +05:30
|
|
|
{% endblock %}
|
|
|
|
|
2013-02-21 10:49:37 +05:30
|
|
|
{% set title="Blog" %}
|
2012-07-12 18:41:12 +05:30
|
|
|
|
2012-06-26 18:54:10 +05:30
|
|
|
{% block content %}
|
2013-02-21 14:25:30 +05:30
|
|
|
<div class="span12">
|
2013-03-07 18:51:10 +05:30
|
|
|
<h2 id="blog-title">Blog</h2>
|
2013-02-21 14:25:30 +05:30
|
|
|
<br>
|
2013-03-11 16:12:56 +05:30
|
|
|
<div class="progress progress-striped active">
|
|
|
|
<div class="bar" style="width: 100%;"></div>
|
|
|
|
</div>
|
2013-02-21 14:25:30 +05:30
|
|
|
<div id="blog-list">
|
|
|
|
<!-- blog list will be generated dynamically -->
|
2012-06-26 18:54:10 +05:30
|
|
|
</div>
|
2013-02-21 14:25:30 +05:30
|
|
|
<div style="text-align: center;">
|
|
|
|
<button id="next-page" class="btn"
|
|
|
|
style="display:none;">More...</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
2013-03-08 10:44:25 +05:30
|
|
|
{% include 'html/blog_footer.html' %}
|
2012-06-26 18:54:10 +05:30
|
|
|
{% endblock %}
|