{% extends "base.html" %} {% block title %}Home Page{% endblock %} {% block content %}

Available Endpoints

{% for route in routes %}

{{ route.name }}

{{ route.methods | join(', ') }}
{{ route.path }} {% if 'GET' in route.methods %} Visit {% endif %}
{% endfor %}
{% endblock %} {% block css %} {{ super() }} {% endblock %}