2024-08-14 17:25:58 -03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="pt-BR">
|
|
|
|
<head>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<!-- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css"> -->
|
2024-08-21 16:18:17 -03:00
|
|
|
<link rel="stylesheet" href="{{ site.baseurl }}Assets/css/main.css">
|
2024-08-17 19:17:21 -03:00
|
|
|
<!-- Leaflet CSS -->
|
|
|
|
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css" />
|
|
|
|
|
|
|
|
<!-- Leaflet JS -->
|
|
|
|
<script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"></script>
|
|
|
|
{% if page.styles %}{{ page.styles }}{% endif %}
|
2024-08-14 17:25:58 -03:00
|
|
|
<title>
|
|
|
|
{% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}
|
|
|
|
</title>
|
|
|
|
|
|
|
|
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="main-content">
|
|
|
|
{% include topBar.html %}
|
|
|
|
{{content}}
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|