mirror of
https://github.com/kennethreitz-archive/.com.git
synced 2026-06-20 15:20:57 +00:00
9 lines
156 B
HTML
9 lines
156 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<ul>
|
|
{% for category, articles in categories %}
|
|
<li>{{ category }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endblock %}
|