{% extends "layout.html" %} {% block title %}search{% endblock %} {% set active_page = "search" %} {% block content %}
personal project
{{ results | length }} found
{% for result in results %}
{{ result.path_with_namespace }}
{{ result.match | length }}
    {% for line in result.match %}
  • {{ line }}
  • {% endfor %}
{% endfor %}
{% endblock %}