{% extends "til_base.html" %} {% block title %}TIL search: {{ q }}{% endblock %} {% block extra_head %} {% endblock %} {% block body %}

TIL search: {{ q }}

{% if q %} {% set results = search_results(q) %} {% endif %} {% if q and not results %}

No results for "{{ q }}"

{% endif %} {% for til in results %}

{{ til.topic }} {{ til.title }} - {{ til.created[:10] }}

{{ highlight(til.summary)|safe }}
{% endfor %} {% endblock %}