Skip to content
Snippets Groups Projects
result.html 327 B
Newer Older
  • Learn to ignore specific revisions
  • <!DOCTYPE html>
    <html>
        <head>
            <title>{{ title }}</title>
        </head>
        <body>
            <h1>Results:</h1>
            <ul>
                {%  for item in result %}
                    <li>
                        <a href= {{ item }}> {{ item }} </a>
                    </li>
                {% endfor %}
            </ul>
        </body>
    </html>