{% if blog_user.blog_title %}
{{ blog_user.blog_title }}
{% endif %}
{% if blog_user.blog_byline %}
{{ blog_user.blog_byline_as_html|safe }}
{% endif %}
{% if request.user.is_authenticated and request.subdomain == request.user.username and drafts %}
{% endif %}
{% for p in posts %}
{% if p.published_at %}
-
{{ p.title }}
—
{% if not p.is_published %}
— SCHEDULED
{% endif %}
{% endif %}
{% endfor %}
{% include 'partials/webring.html' %}
{% include 'partials/footer_blog.html' %}
{% endblock %}