2013-04-03 16:34:23 +05:30
|
|
|
{% extends "app/website/templates/html/page.html" %}
|
2012-06-26 18:54:10 +05:30
|
|
|
|
2012-07-12 18:41:12 +05:30
|
|
|
{% block javascript %}
|
2013-04-03 16:34:23 +05:30
|
|
|
{% include "app/website/templates/js/blog.js" %}
|
2012-07-12 18:41:12 +05:30
|
|
|
{% endblock %}
|
2012-06-26 18:54:10 +05:30
|
|
|
|
|
|
|
{% block css %}
|
2013-04-03 16:34:23 +05:30
|
|
|
{% include "app/website/templates/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-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 -->
|
2012-06-26 18:54:10 +05:30
|
|
|
</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>
|
2013-04-03 16:34:23 +05:30
|
|
|
{% include 'app/website/templates/html/blog_footer.html' %}
|
2012-06-26 18:54:10 +05:30
|
|
|
{% endblock %}
|