{% load staticfiles %}
{{site_title}} | {{ tagline }}
Django Blog
{% if user.is_staff %}
Dashboard
{% elif user.is_authenticated %}
Dashboard
{% endif %}
Home
(current)
About
Contact
{% if user.is_authenticated %}
Hello {{user.username }}
Logout
{% else %}
Login
Sign Up
{% endif %}
{% block post_block %} {% endblock %}
{% csrf_token %}
Search
Recent Posts
{% if all_posts %}
{% for post in all_posts %}
{{post.title}}
{% endfor %}
{% else %}
No Recent Post!
{% endif %}
Archeives
{% for year in years %}
{{ year }}
{% endfor %}
Categories
{% for category in categories %}
{{ category }}
{% endfor %}
Tags
{% for tag in tags %}
{{ tag }}
{% endfor %}