{% extends "base.html" %} {% block title %}Home{% endblock title %} {% block content %}
Welcome to the Dr Ecco Omniheurist games website! This website contains competitive puzzles and games for your mathematical/logical pleasure. All games were built by students in the class Heuristic Problem Solving at NYU.
{% for game_section_path in section.subsections %} {% set game_section = get_section(path=game_section_path) %} {% for year_subsection_path in game_section.subsections | reverse %} {% set year_subsection = get_section(path=year_subsection_path) %}

{{year_subsection.title}}

{% for page in year_subsection.pages %}
thumbnail

{{ page.title }}

{{ page.extra.team }}
{% endfor %}
{% endfor %} {% endfor %} {% endblock content %}