{% extends 'base.html' %} {% block title %}Search{% endblock %} {% block content %}
{% if query %}

Search Results for "{{ query }}"

{% if results or research_results or publication_results or impact_results or product_results %} {% for post in results %}
{{ post.publish }}
{% endfor %} {% for research in research_results %}
{{ research.publish }}

{{ research.title }}

{{ research.description|safe|truncatewords:120 }}

Learn More
{% endfor %} {% for publication in publication_results %}
{{ publicatin.publish }}

{{ publication.title }}

{{ publication.description|safe }}

Learn More
{% endfor %} {% for impact in impact_results %}
{{ impact.publish }}
{% endfor %} {% for product in product_results %}
{{ product.publish }}
{% endfor %} {% else %}

No results found for "{{ query }}"

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