exo-notes/monospace/templates/tag.html

11 lines
271 B
HTML

{% extends "index.html" %}
<!-- tag.html -->
{% block title %}{{ SITENAME }} - {{ tag }}{% endblock %}
{% block content %}
<ul>
{% for article in articles %}
<li><a href = "{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></li>
{% endfor %}
</ul>
{% endblock %}