{% extends "postings/generic_page.html" %}
{# The homepage for the website. #}
{% block content %}
{# First section for searching our database. #}
{# Second section for displaying results, or whatever should be shown first. #}
{% if results %}
{% for entity in results %}
- {{ entity.name }}
{% endfor %}
{% endif %}
{% endblock %}