{% extends "base_2col.html" %} {% block sectionid %}blog{% endblock %} {% block title %}Open Thoughts{% endblock %} {% block billboard %}Open Thoughts{% endblock %} {% block content-related %} {% load safe_markup %} {% load markup %} {% if blog_entries %}

Latest Thoughts

{% endif %} {% if blog_years %}

Archive

{% endif %} {% if latest_posts %}

Recent forum posts

{% else %}

No forum yet.

{% endif %} {% if latest_feeds %}

Recent posts from external sites

{% else %}

No forum yet.

{% endif %}

RSS Feed RSS Feed - Blog

{% endblock %} {% block content %} {% if blog_entries %} {% for latest_blog in blog_entries %}

{{ latest_blog.headline }}

by {{ latest_blog.author }} on {{ latest_blog.pub_date|date:"F j, Y" }} {% load comments %} {% get_comment_list for blog.blogitem latest_blog.id as comment_list %} {% if comment_list %} {% get_comment_count for blog.blogitem latest_blog.id as comment_count %} ({{ comment_count }} comment{{ comment_count|pluralize }}) {% else %} (0 comments) {% endif %}

{{ latest_blog.body|markdown:"safe" }}

{% if not forloop.last %}
{% endif %} {% endfor %} {% endif %} {% endblock %}