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

26 lines
575 B
HTML
Raw Normal View History

2012-07-12 13:11:12 +00:00
{% extends "html/page.html" %}
2012-07-12 13:11:12 +00:00
{% block javascript %}
{% include "js/blog.js" %}
{% endblock %}
{% block css %}
2012-07-12 13:11:12 +00:00
{% include "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 %}
2013-02-21 08:55:30 +00:00
<div class="span12">
2013-03-07 13:21:10 +00:00
<h2 id="blog-title">Blog</h2>
<p id="blog-link" style="display:none"><a href="blog">Show posts by everyone.</a></p>
2013-02-21 08:55:30 +00:00
<br>
<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>
{% endblock %}