{% extends "templates/base.html" %} {% block title %}{{ 'Hackathons' }}{% endblock %} {% from "www/hackathons/macros/card.html" import hackathon_card %} {% from "www/hackathons/macros/card.html" import null_card %} {% block head_include %} {% endblock %} {% block content %} {{ 'Hackathon' }} {% for hackathon in hackathons %} {{ hackathon_card(hackathon) }} {% endfor %} {% if hackathons %} {% for n in range( (3 - (hackathons|length)) %3) %} {{ null_card() }} {% endfor %} {% endif %} {% endblock %}