Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
wagtail-gardentronic / search / templates / wagtailsearch / search_results.html
Size: Mime:
<!DOCTYPE html>
<html>
<head>
    <title>Search{% if search_results %} Results{% endif %}</title>
</head>
<body>
    <h1>Search{% if search_results %} Results{% endif %}</h1>

    <form action="{% url 'wagtailsearch_search' %}" method="get">
        <input type="text" name="q"{% if query_string %} value="{{ query_string }}"{% endif %}>
        <input type="submit" value="Search">
    </form>

    {% if search_results %}
        <ul>
            {% for result in search_results %}
                <li><a href="{{ result.specific.url }}">{{ result.specific }}</a></li>
            {% endfor %}
        </ul>
    {% endif %}
</body>
</html>