{% extends "base.html" %}
{% block title %}{{ title }}{% endblock %}
{% block content %}
{% include "menu.html" %}
{{ title }}
{% for (name, url, count) in items %}
{{ name }}
{% match count %}
{% when Some with (c) %}
({{ c }})
{% else %}
{% endmatch %}
{% endfor %}
{% endblock %}