You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
992 B
Plaintext
37 lines
992 B
Plaintext
2 years ago
|
{% extends "base/frame.twig" %}
|
||
2 years ago
|
{% block stylesheets %}
|
||
|
<link rel="stylesheet" type="text/css" href="/assets/css/front/start.css?=sdfsdf">
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block main %}
|
||
2 years ago
|
<section role="start">
|
||
2 years ago
|
<div role="index-wrapper">
|
||
|
<div role="index-search">
|
||
|
<form action="{{ path('index') }}" method="post" enctype="multipart/form-data">
|
||
2 years ago
|
<input type="text" name="index_search" value="" placeholder="SEARCH ME!"/>
|
||
2 years ago
|
<button>
|
||
|
<i class="ti ti-search"></i>
|
||
|
</button>
|
||
|
</form>
|
||
|
</div>
|
||
2 years ago
|
|
||
|
|
||
|
<div role="index-results">
|
||
|
{% if options.items is defined %}
|
||
|
<h1>Found Stuff for:
|
||
|
{{ options.terms }}</h1>
|
||
2 years ago
|
{% for item in options.items %}
|
||
|
<a class="search-link" href="/location/{{ item.uuid }}">{{ item.name }}</a><br/>
|
||
|
{% endfor %}
|
||
2 years ago
|
{% endif %}
|
||
|
{{ options.count }}
|
||
|
Bad Spaces tracked. Shot by
|
||
|
<a href="https://unsplash.com/photos/935EcPU1pBI">Ussama Azam</a>
|
||
|
</div>
|
||
|
|
||
2 years ago
|
</div>
|
||
2 years ago
|
|
||
|
|
||
2 years ago
|
</section>
|
||
|
{% endblock %}
|