blob: df258e138f4d24b38b3665d542ade0c77531d3b3 [file] [log] [blame]
{% extends "html/page.html" %}
{% block javascript %}
{% include "js/blog.js" %}
{% endblock %}
{% block css %}
{% include "css/blog.css" %}
{% endblock %}
{% set title="Blog" %}
{% block content %}
<div class="span12">
<h2 id="blog-title">{{ blog_title }}</h2>
{% if blog_introduction %}
<p>{{ blog_introduction }}</p>
{% endif %}
<h3 id="blot-subtitle" style="display:none;"></h3>
<br>
<div class="progress progress-striped active">
<div class="bar" style="width: 100%;"></div>
</div>
<div id="blog-list">
<!-- blog list will be generated dynamically -->
</div>
<div style="text-align: center;">
<button id="next-page" class="btn"
style="display:none;">More...</button>
</div>
</div>
{% include 'html/blog_footer.html' %}
{% endblock %}