2023-01-18 00:54:59 +01:00
|
|
|
{% extends "base/frame.twig" %}
|
|
|
|
{% block stylesheets %}
|
|
|
|
<link rel="stylesheet" type="text/css" href="/assets/css/front/start.css?=sdfsdf">
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block main %}
|
|
|
|
<section role="location">
|
2023-01-22 23:03:45 +01:00
|
|
|
<h1>{{ options.location.name }}</h1>
|
|
|
|
<h2>Description</h2>
|
|
|
|
<p>{{ options.location.description }}</p>
|
|
|
|
<h3>Snaps</h3>
|
|
|
|
{% for image in options.location.images %}
|
|
|
|
<a target="_blank" href="/assets/images/examples/{{ image.path }}">
|
|
|
|
<img src="/assets/images/examples/{{ image.path }}"/>
|
|
|
|
</a>
|
|
|
|
{% endfor %}
|
|
|
|
<br/>
|
|
|
|
<strong>TAGS:</strong>
|
|
|
|
{{ options.location.tags }}
|
2023-01-24 04:59:51 +01:00
|
|
|
<br/>
|
|
|
|
{% if loggedIn %}
|
|
|
|
<a href="/den/locations/modify/edit/{{ options.location.uuid }}">EDIT
|
|
|
|
{{ options.location.name }}</a>
|
|
|
|
{% endif %}
|
2023-01-18 00:54:59 +01:00
|
|
|
</section>
|
|
|
|
{% endblock %}
|