mirror of
https://github.com/nairobilug/pelican-alchemy.git
synced 2024-12-30 12:15:06 +01:00
17 lines
338 B
HTML
17 lines
338 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}
|
|
Categories {{ super() }}
|
|
{% endblock %}
|
|
|
|
{% block page_header %}
|
|
Categories
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<ul class="list-unstyled">
|
|
{% for category, articles in categories %}
|
|
<li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endblock %}
|