forked from are0h/TheBadSpace
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.
19 lines
487 B
Twig
19 lines
487 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.page }}</h2>
|
|
{% for location in options.list.locations %}
|
|
<sup>ID:{{ location.id }}</sup>
|
|
<a href="/location/{{ location.uuid }}">
|
|
|
|
{{ location.name }}</a><br/>
|
|
{% endfor %}
|
|
</section>
|
|
{% endblock %}
|