{% extends 'base.html' %} {% from 'components/rant_card.html' import render_rant_card %} {% block content %}
{% if search_term %} {% if results %} {% for rant in results %} {{ render_rant_card(rant) }} {% endfor %} {% else %}

No results found

{% endif %} {% endif %}
{% endblock %}