{% extends "layout.html" %} {% block title %}Search SWH{% endblock %} {% block content %}
{% include 'includes/home-search-symbol.html' %} {% if result is not none and result|length > 0 %}

Result for '{{ q | truncate(50) }}'


{% for res in result %} {% endfor %}
content kind language
content kind language
{{ res['sha1'] }} {{ res['kind'] }} {{ res['lang'] }}
{% if linknext is not none and linknext != '' %}
Next {% endif %} {% endif %} {% if message is not none and message != '' %}
{{ message | safe }}
{% endif %} {% if result is not none and result|length == 0 %} No result for '{{ q | truncate(50) }}'. {% endif %}
{% endblock %}