27 lines
		
	
	
		
			894 B
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			894 B
		
	
	
	
		
			HTML
		
	
	
	
<!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"> -->
 | 
						|
	<link rel="stylesheet" href="{{ site.baseurl }}Assets/css/main.css">
 | 
						|
    <!-- 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 %}
 | 
						|
	<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> |