diff --git a/www/conservancy/templates/blog/entry_detail.html b/www/conservancy/templates/blog/entry_detail.html new file mode 100644 index 0000000000000000000000000000000000000000..45a86e6e7a5db05ed52571aec8cc92159d7c0f79 --- /dev/null +++ b/www/conservancy/templates/blog/entry_detail.html @@ -0,0 +1,16 @@ +{% extends "base_blog.html" %} + +{% block subtitle %}{{ object.headline|striptags }} - Conservancy Blog - {% endblock %} + +{% block content %} + +

{{ object.pub_date|date:"F j, Y" }} by {{ object.author.formal_name }}

+

{{ object.headline|safe }}

+{{ object.body|safe }} +

Posted by {{ object.author.formal_name }} on {{ object.pub_date|date:"F j, Y" }}. Please email any comments on this entry to press@softwarefreedom.org.

+ +{% if object.tags.all %}

Tags: {% for tag in object.tags.all %}{{ tag.label }}{% if not forloop.last %}, {% endif %}{% endfor %}

{% endif %} + +

Other Conservancy Blog entries...

+ +{% endblock %}