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.
24 lines
661 B
Twig
24 lines
661 B
Twig
{% extends "base/frame.twig" %}
|
|
{% block stylesheets %}
|
|
<link rel="stylesheet" type="text/css" href="/assets/css/front/start.css?=sdfsdf">
|
|
{% endblock %}
|
|
|
|
{% block main %}
|
|
<section role="listings">
|
|
<h1>The Bad Space Listings</h1>
|
|
<h2>Page
|
|
{{ options.currentPage }}
|
|
of
|
|
{{ options.list.total }}</h2>
|
|
{% for location in options.list.locations %}
|
|
|
|
<a href="/location/{{ location.uuid }}">
|
|
<label>{{ location.id }}</label>
|
|
{{ location.name }}</a>
|
|
<br/>
|
|
{% endfor %}
|
|
<a href="/listings/page/{{ options.prevPage }}">Previous</a>
|
|
<a href="/listings/page/{{ options.nextPage }}">Next</a>
|
|
</section>
|
|
{% endblock %}
|