simplyOpen/templates/category.html

17 lines
391 B
HTML
Raw Normal View History

2023-03-16 21:40:13 +01:00
{% extends "base.html" %}
{% block title %}{{ category }} - {{ SITENAME }}{% endblock %}
2023-03-21 21:37:39 +01:00
{% block extra_meta %}
<meta property=og:title content="{{ category }}" />
{% endblock %}
2023-03-16 21:40:13 +01:00
{% block content %}
<h1>Category: {{ category }}</h1>
{% for article in articles_page.object_list %}
{% include 'article_summary.inc.html' %}
{% endfor %}
{% include 'pagination.inc.html' %}
{% endblock %}