{% block css %}
<link rel="stylesheet" type="text/css" media="screen" href="{{ asset('assets/game/styles/map.css') }}"/>
<link rel="stylesheet" type="text/css" media="screen" href="{{ asset('assets/game/scripts/stickytooltip.css') }}"/>
<link rel="stylesheet" type="text/css" media="screen" href="{{ asset('assets/game/style.css') }}"/>
{% endblock %}
{% block body %}
<div id="container"><br>
<center>
<h1>MAP PREVIEW {{ area.description }}</h1>
<font color=white>The preview only shows <a href="{{ path('guide_subpage', {'subpage': 'acre'}) }}">acres</a> and <a href="{{ path('guide_subpage', {'subpage': 'government'}) }}">government locations</a>, other info remains hidden. <a href="{{ path('site_index') }}">(www.the-outbreak.com)</a>
<br><br> Total active towns: ? | Total active raider camps: ?</font></center>
<div class="mapholder">
{% for acre in acres %}
<div style="position:absolute;left:{{ (acre.x * 30) + 20 }}px;top:{{ (acre.y * 30) + 5 }}px;width:23px;height:23px;">
<p><img src="{{ asset('assets/game/contentimages/map/icons/' ~ acre.type ~ '.png') }}" data-tooltip="acre{{ acre.id }}"></p>
</div>
{% endfor %}
{% for location in govLocations %}
<div style="position:absolute;left:{{ (location.x * 30) + 20 }}px;top:{{ (location.y * 30) + 5 }}px;width:23px;height:23px;">
<p><img src="{{ asset('assets/game/contentimages/map/icons/' ~ location.name ~ '.png') }}" data-tooltip="gov{{ location.id }}"></p>
</div>
{% endfor %}
</div>
</div>
{% endblock %}
{% block js %}
<script type="text/javascript" src="{{ asset('assets/game/scripts/jquery.min_new.js') }}"></script>
<script type="text/javascript" src="{{ asset('assets/game/scripts/stickytooltip.js') }}"></script>
{% endblock %}