Files @ f184778979f5
Branch filter:

Location: CSY/sefm2020/themes/bootstrap/templates/categories.html

Benjamin Lion
Merge.
1
2
3
4
5
6
7
8
9
{% extends "base.html" %}
{% block title %}{{ SITENAME }} <small>[categories]</small>{% endblock %}
{% block content %}
<ul>
{% for category, articles in categories %}
	<li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a></li>
{% endfor %}
</ul>
{% endblock %}