28 lines
773 B
HTML
28 lines
773 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{ page.title }}</title>
|
|
<link rel="stylesheet" href="{{ '/assets/css/style.css' | relative_url }}">
|
|
<!-- Adicione outros links de estilos necessários -->
|
|
</head>
|
|
<body>
|
|
{% include header.html %}
|
|
|
|
<main>
|
|
{{ content }}
|
|
</main>
|
|
|
|
<footer>
|
|
<!-- Rodapé -->
|
|
</footer>
|
|
|
|
<!-- Scripts no final da página para melhor performance -->
|
|
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
|
|
<script src="{{ '/assets/js/script.js' | relative_url }}"></script>
|
|
<!-- Adicione outros scripts conforme necessário -->
|
|
|
|
</body>
|
|
</html>
|