Remove category template

This commit is contained in:
Tanner Collin 2021-07-26 23:27:22 +00:00
parent 8f5f042794
commit 1e4baa950f

View File

@ -1,10 +0,0 @@
{% extends "base.html" %}
{% block content %}
<h2>{{ category }}</h2>
{% for article in articles_page.object_list if article.category == category %}
<h3><a href="{{ article.url }}">{{ article.title }}</a></h3>
{{ article.summary }}
{% endfor %}
{% endblock %}