{% extends "base.html" %} {% block title %}{{ article.title }}{% endblock title %} {% block crumb %}blog/{{ article.slug }}{% endblock crumb %} {% block content %} {% if logged_in_admin %}

visitor@universal-web:~/blog$ cat {{ article.slug }}.txt

{{ article.title }}

// {{ article.view_count }} view(s) logged.

[ cd .. ]
~/blog/{{ article.slug }}.txt readonly
{% if article.excerpt %}

# {{ article.excerpt }}

{% endif %}
{{ article.content }}
{% else %}

{{ article.title }}

{{ article.view_count }} view(s) logged.

[ cd .. ]
~/blog/{{ article.slug }}.txt readonly
{% if article.excerpt %}

# {{ article.excerpt }}

{% endif %}
{{ article.content }}
{% endif %} {% endblock content %}