{% if error %}
{{ error }}
{% endif %} {% if single_post %}

{{ single_post.title }}

{% if single_post.tags %} {% endif %}
{{ single_post.content }}
{% elif create_mode %}

Create New Post

Cancel
{% elif edit_mode and post %}

Edit Post

Cancel
{% elif admin_mode %}

Blog Administration

New Post
{% if posts %}
{% for post in posts %}
View Edit
{% endfor %}
{% else %}

No posts yet

Create your first blog post to get started!

Create First Post
{% endif %} {% else %} {% if current_tag %} {% endif %} {% if posts %}
{% for post in posts %}

{{ post.title }}

{{ post.content[:200] }}{% if post.content|length > 200 %}...{% endif %}

{% if post.tags %}
{% for tag in post.tags %} {{ tag }} {% endfor %}
{% endif %}
{% endfor %}
{% else %}
{% if current_tag %}

No posts found with tag "{{ current_tag }}"

Try browsing other tags or return to the homepage.

Back to Home {% else %}

Welcome to NADB Blog!

No posts have been published yet. Create your first post to get started.

Create First Post {% endif %}
{% endif %} {% endif %}