website/www/conservancy/templates/blog/entry_detail.html
Brett Smith e7c1171b6e blog: Refactor entry rendering into a partial.
This helps ensure that entries are rendered consistently wherever they
appear.
2016-12-30 23:12:09 -05:00

14 lines
478 B
HTML

{% extends "base_blog.html" %}
{% block subtitle %}{{ object.headline|striptags|safe }} - Conservancy Blog - {% endblock %}
{% block content %}
{% include "blog/entry_partial.html" with entry=object htag="h2" only %}
<p class="blog-comments">Please email any comments on this entry to
<a href="mailto:info@sfconservancy.org">info@sfconservancy.org</a>.</p>
<p><span class="continued"><a href="/blog/">Other Conservancy Blog entries&hellip;</a></span></p>
{% endblock %}