{% 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 %} {{ 'Conferences' }} {% for conference in conferences %} {{ conference.name }} {% endfor %} {% if conferences %} {% for n in range( (3 - (conferences|length)) %3) %} {{ null_card() }} {% endfor %} {% endif %} {% endblock %}