{% extends 'base/base.html' %} {% block title %}search result{% endblock %} {% block styles %} {{ super() }} {% endblock %} {% block content %}

found tags:

{% for tag in tags %} {% include "notes/snippets/tag.html" %} {% else %}

no tags found

{% endfor %}

found notes:

{% for note in notes %}

{{ note.title }}

{% else %}

no notes found

{% endfor %}
{% endblock %}