brotherton-erpnext/website/templates/pages/blog.html

33 lines
861 B
HTML
Raw Normal View History

{% extends "app/website/templates/html/page.html" %}
2012-07-12 13:11:12 +00:00
{% block javascript %}
{% include "app/website/templates/js/blog.js" %}
2012-07-12 13:11:12 +00:00
{% endblock %}
{% block css %}
{% include "app/website/templates/css/blog.css" %}
{% endblock %}
2013-02-21 05:19:37 +00:00
{% set title="Blog" %}
2012-07-12 13:11:12 +00:00
{% block content %}
<div class="col col-lg-12">
2013-03-11 12:27:57 +00:00
<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 08:55:30 +00:00
<br>
2013-03-11 10:42:56 +00:00
<div class="progress progress-striped active">
<div class="bar" style="width: 100%;"></div>
</div>
2013-02-21 08:55:30 +00:00
<div id="blog-list">
<!-- blog list will be generated dynamically -->
</div>
2013-02-21 08:55:30 +00:00
<div style="text-align: center;">
<button id="next-page" class="btn"
style="display:none;">More...</button>
</div>
</div>
{% include 'app/website/templates/html/blog_footer.html' %}
{% endblock %}