exo-notes/monospace/templates/category.html

11 lines
280 B
HTML
Raw Normal View History

2022-02-24 06:55:41 +00:00
{% extends "base.html" %}
{% block title %}{{ SITENAME }} - {{ category }}{% endblock %}
{% block content %}
<h1>{{ category }}</h1>
<ul>
{% for article in articles %}
<li><a href="{{ SITEURL }}"/{{ article.url }}">{{ article.title }}</a></li>
{% endfor %}
</ul>
{% endblock %}