17 lines
391 B
HTML
17 lines
391 B
HTML
{% extends "base.html" %}
|
|
{% block title %}{{ category }} - {{ SITENAME }}{% endblock %}
|
|
{% block extra_meta %}
|
|
<meta property=og:title content="{{ category }}" />
|
|
{% endblock %}
|
|
{% block content %}
|
|
|
|
<h1>Category: {{ category }}</h1>
|
|
|
|
{% for article in articles_page.object_list %}
|
|
{% include 'article_summary.inc.html' %}
|
|
{% endfor %}
|
|
|
|
{% include 'pagination.inc.html' %}
|
|
|
|
{% endblock %}
|