2020-08-03 19:14:13 +02:00
|
|
|
{% extends 'global.html'%}
|
2020-09-02 22:46:10 +02:00
|
|
|
|
2020-08-03 19:14:13 +02:00
|
|
|
{% load static %}
|
2020-10-01 22:58:06 +02:00
|
|
|
{% load i18n %}
|
2020-08-20 23:07:52 +02:00
|
|
|
{% block additional_head %}
|
2020-09-12 11:47:42 +02:00
|
|
|
<link rel="stylesheet" href="{% static 'maps/ol.css' %}" type="text/css">
|
|
|
|
<script src="{% static 'maps/ol.js' %}"></script>
|
2020-08-20 23:07:52 +02:00
|
|
|
{% endblock additional_head %}
|
2020-08-03 19:14:13 +02:00
|
|
|
|
2020-10-10 23:46:26 +02:00
|
|
|
# {% block title %}{% trans 'Home' %}{% endblock %}
|
2020-08-03 19:14:13 +02:00
|
|
|
|
|
|
|
{% block maincontent %}
|
|
|
|
|
2020-09-02 22:46:10 +02:00
|
|
|
{% include 'partials/welcome.html' %}
|
2020-09-02 23:57:29 +02:00
|
|
|
<article class="LP-TextSection">
|
|
|
|
</article>
|
2020-09-02 22:46:10 +02:00
|
|
|
|
2020-09-13 20:15:49 +02:00
|
|
|
{% include 'partials/osm_map.html' with config=mapping_config %}
|
2020-08-03 19:14:13 +02:00
|
|
|
<div class="LP-PlaceGrid">
|
2020-10-10 23:46:26 +02:00
|
|
|
<h1 class="LP-Headline LP-Headline">{% trans 'Explore the latest places' %}</h1>
|
2020-08-03 19:14:13 +02:00
|
|
|
<ul class="LP-PlaceGrid__Grid">
|
2020-08-05 18:57:09 +02:00
|
|
|
{% for place in place_list %}
|
2020-08-03 19:14:13 +02:00
|
|
|
<li class="LP-PlaceGrid__Item">
|
|
|
|
<a href="{% url 'place_detail' pk=place.pk %}" class="LP-Link">
|
2020-10-12 20:57:04 +02:00
|
|
|
{% include 'partials/place_teaser.html' with place=place%}
|
2020-08-05 18:57:09 +02:00
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
2020-08-03 19:14:13 +02:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock maincontent %}
|