{% extends "base.html" %} {% block title %}Your Everyday Tools{% endblock %} {% block content %}

Your Everyday Tools

All the utilities you need, in one place.

{% for cat in tool_categories %}
{{ cat.name }}
{% for tool in cat.tools %}

{{ tool.name }}

{{ tool.desc }}

{% endfor %}
{% endfor %} {% endblock %}