You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
943 B
28 lines
943 B
{% extends 'partials/base.html.twig' %}
|
|
|
|
{% block javascripts %}
|
|
{% do assets.addJs('https://cdn.polyfill.io/v2/polyfill.min.js?features=requestAnimationFrame,Element.prototype.classList') %}
|
|
{% do assets.addJs('https://cdn.rawgit.com/openlayers/openlayers.github.io/master/en/v5.3.0/build/ol.js') %}
|
|
{% do assets.addJs('https://cdn.jsdelivr.net/gh/dusterthefirst/Login-With-Discord/dist/lwd.js') %}
|
|
{% do assets.addJs('https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js') %}
|
|
{% do assets.addJs('/horde-map/assets/map.js', {group: 'bottom'}) %}
|
|
|
|
{{ parent() }}
|
|
|
|
{% endblock %}
|
|
|
|
{% block stylesheets %}
|
|
{% do assets.addCss('https://cdn.rawgit.com/openlayers/openlayers.github.io/master/en/v5.3.0/css/ol.css') %}
|
|
{% do assets.addCss('/horde-map/assets/map.css') %}
|
|
|
|
{{ parent() }}
|
|
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{{ page.content }}
|
|
|
|
<div id="map" class="map"></div>
|
|
|
|
{% endblock %}
|