<!--
vim: ts=2 noexpandtab
-->
{% extends "index.html" %}
{% block title %}{{ super() }} - Categories{% endblock%}
{% set active_page = "categories" %}
{% block content %}
<link href="{{ url_for("static", filename="css/categories.css") }}" rel="stylesheet">
	{% for category in categories %}
	<span>
		<ul>
			<li>
				<a href="search?c={{ category }}">{{ category }}</a>
				<ul>
				{% for sub_category in categories[category] %}
					<li>
					<a href="search?s={{ sub_category }}">{{ sub_category }}</a>
					</li>
				{% endfor %}
				</ul>
			</li>
		</ul>
	</span>
	{% endfor %}
{% endblock content%}