{% extends "layout/base.html" %} {% block content %}

Search

{% if query %}

Query: {{ query }} | Total hits: {{ total_hits }}

{% else %}
Enter a search term in the top navigation bar.
{% endif %} {% for section in sections %}
{{ section['title'] }} ({{ section['total'] }}) Open {{ section['title'] }}
{% if section['key'] == 'daily_jobs' %}
Note: The Daily Jobs page itself only shows results for the selected day. Search results can include matches that relate to jobs across other days.
{% endif %}
{% if section['items'] %}
{% for item in section['items'] %} {% endfor %}
Result Details Meta
{% if item.link %} {{ item.title }} {% else %} {{ item.title }} {% endif %} {{ item.subtitle }} {{ item.meta }}
{% else %}
No results in this section.
{% endif %}
{% if section['total_pages'] > 1 %} {% endif %}
{% endfor %} {% endblock %}