{% extends 'base.html' %} {% block extra_head %} {% include "includes/social.html" %} {% endblock %} {% block main %}

{{ page.title }}

{% include 'includes/search_form.html' %}
{% if results %} {% for blog_post in results %}
{% include "includes/blog_post_card.html" %}
{% endfor %} {% elif q %}
No results found, please try something else.
{% else %}
Submit a query above to see some results.
{% endif %} {% if random_posts %}

If you don't know what to search for check out some of these posts.

{% for blog_post in random_posts %}
{% include "includes/blog_post_card.html" %}
{% endfor %}
{% endif %}
{% endblock %}