33 lines
896 B
HTML
Raw Normal View History

{% extends "app/website/templates/html/page.html" %}
2012-07-12 18:41:12 +05:30
{% block javascript %}
{% include "app/website/templates/js/blog.js" %}
2012-07-12 18:41:12 +05:30
{% endblock %}
{% block css %}
{% include "app/website/templates/css/blog.css" %}
{% endblock %}
2013-02-21 10:49:37 +05:30
{% set title="Blog" %}
2012-07-12 18:41:12 +05:30
{% block content %}
2013-08-21 17:48:08 +05:30
<div class="col-md-12">
2013-03-11 17:57:57 +05:30
<h2 id="blog-title">{{ blog_title }}</h2>
{% if blog_introduction %}
<p>{{ blog_introduction }}</p>
{% endif %}
<h3 id="blot-subtitle" style="display:none;"></h3>
2013-02-21 14:25:30 +05:30
<br>
2013-03-11 16:12:56 +05:30
<div class="progress progress-striped active">
2013-06-13 16:11:03 +05:30
<div class="progress-bar progress-bar-info" style="width: 100%;"></div>
2013-03-11 16:12:56 +05:30
</div>
2013-02-21 14:25:30 +05:30
<div id="blog-list">
<!-- blog list will be generated dynamically -->
</div>
2013-02-21 14:25:30 +05:30
<div style="text-align: center;">
2013-05-27 14:47:56 +05:30
<button id="next-page" class="btn btn-default"
2013-02-21 14:25:30 +05:30
style="display:none;">More...</button>
</div>
</div>
{% include 'app/website/templates/html/blog_footer.html' %}
{% endblock %}