brotherton-erpnext/website/templates/pages/writers.html
2013-03-11 17:57:57 +05:30

17 lines
374 B
HTML

{% extends "html/page.html" %}
{% set title="Blog Writers" %}
{% block content %}
<div class="span12">
<h2 id="blog-title">Blog Writers</h2>
{% if writers_introduction %}
<p>{{ writers_introduction }}</p>
{% endif %}
<hr>
{% for blogger_info in bloggers %}
{% include "html/blogger.html" %}
{% endfor %}
</div>
{% include 'html/blog_footer.html' %}
{% endblock %}