exo-notes/monospace/templates/tag.html

11 lines
271 B
HTML
Raw Normal View History

2022-02-24 06:55:41 +00:00
{% 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 %}