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

17 lines
440 B
HTML
Raw Normal View History

{% extends "app/website/templates/html/page.html" %}
2013-03-08 05:30:18 +00:00
{% set title="Blog Writers" %}
{% block content %}
<div class="span12">
<h2 id="blog-title">Blog Writers</h2>
2013-03-11 12:27:57 +00:00
{% if writers_introduction %}
<p>{{ writers_introduction }}</p>
{% endif %}
2013-03-08 05:30:18 +00:00
<hr>
{% for blogger_info in bloggers %}
{% include "app/website/templates/html/blogger.html" %}
2013-03-08 05:30:18 +00:00
{% endfor %}
</div>
{% include 'app/website/templates/html/blog_footer.html' %}
2013-03-08 05:30:18 +00:00
{% endblock %}