2023-07-20 19:34:24 +00:00
|
|
|
{% extends "index.html" %}
|
|
|
|
{% block title %}{{ SITENAME }} - {{ category }}{% endblock %}
|
2023-07-21 03:34:53 +00:00
|
|
|
{% block content %}
|
|
|
|
{% if articles %}
|
|
|
|
{% for article in articles %}
|
|
|
|
<div class="blogItem">
|
|
|
|
<h2><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h2>
|
|
|
|
<h3>{{ article.locale_date }}</h3>
|
|
|
|
{{ article.content }}
|
|
|
|
<h3 class="blogMeta">{% if not SUPPRESS_ITEM_CATEGORIES %}Category: <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a>{% endif %} | {% if article.tags %} Tags: {% for tag in article.tags %} <span><a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a> {% if not loop.last %} / {% endif %} </span> {% endfor %}</h3>{% endif %}</div>
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
|
|
|
{% endblock content %}
|
|
|
|
{% block archives %} {% endblock %}
|