cheit_maps/templates/map_detail.html
2025-04-21 18:33:12 +02:00

29 lines
642 B
HTML

<!-- backend/templates/map_detail.html -->
<!DOCTYPE html>
<html>
<head>
<title>{{ map.name }}</title>
<style>
body, html {
font-family: 'Roboto', sans-serif;
margin: 0;
padding: 0;
height: 100%;
}
</style>
</head>
<body>
<h1>{{ map.name }}</h1>
<p>{{ map.description }}</p>
<br>
<a href="{{ map.pdf }}" download>Download PDF</a>
<br>
<br>
<a href="https://www.google.com/maps?q={{ map.latitude }},{{ map.longitude }} "target="_blank">Parking Lot coordinates</a>
<br><br>
<a href="/">← Back to Map</a>
<br>
<br>
<img src="{{ map.full_size }}" style="width: 100vw;" />
</body>
</html>