brotherton-erpnext/website/templates/pages/blog.html
2013-03-07 18:51:10 +05:30

26 lines
575 B
HTML

{% 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</h2>
<p id="blog-link" style="display:none"><a href="blog">Show posts by everyone.</a></p>
<br>
<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>
{% endblock %}