{% 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 }} {{ post.title }} {{ post.intro }} Learn More {% 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 }} {{ impact.title }} {{ impact.intro }} Learn More {% endfor %} {% for product in product_results %} {{ product.publish }} {{ product.name }} {{ product.intro }} Learn More {% endfor %} {% else %} No results found for "{{ query }}" {% endif %} {% endif %} {% endblock %}
{{ post.intro }}
{{ research.description|safe|truncatewords:120 }}
{{ publication.description|safe }}
{{ impact.intro }}
{{ product.intro }}
No results found for "{{ query }}"