{% extends "blog/base.html" %}
{% load blog_tags %}
{% block title %}blOgeN{% endblock %}
{% block content %}
{% include 'blog/post/search.html' %}
{% if tag %}
Posts tagged with "{{ tag.name }}"
{% endif %}
{% for post in posts %}
{% include 'blog/post/list_snippet.html' %}
{% endfor %}
{% include 'pagination.html' with page=posts %}
{% endblock %}