{% extends 'home.html' %} {% load staticfiles %} {% block results %}
{% if tutorials %}

Search Results for "{{ query }}"

About {{ total }} results ({{ time }} seconds)


{% for tutorial in tutorials %}
{{ tutorial.title }}
{% for tag in tutorial.tags.all %} 📌 {{ tag }}   {% endfor %}

{{ tutorial.category }}
{% endfor %}
{% if tutorials.has_other_pages %} {% endif %}
{% else %}

Ah! Sorry, No Results
search404

{% endif %}
{% endblock results %}