aboutsummaryrefslogtreecommitdiff
path: root/templates/blog/tagged.html
blob: 192ef2ee2bdb8796e0c2fb1401c86de7de46afe7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{% extends 'blog/partials/base.html' %} {% block content %}
{% load static %}
<h2 style="margin-top:15px;">Posts Tagged With "{{ tag.name }}"</h2>
{% if posts %}
<div style="margin-top: -10px;">
    {% include 'blog/partials/post_list.html' %}
</div>
{% else %}
<p>There are no posts tagged with "{{ tag.name }}".</p>
{% endif %}
{% endblock %}