2023-11-23 22:23:33 -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-05-23 01:23:48 -03:00
|
|
|
<link rel="stylesheet" href="{{ site.baseurl }}/assets/css/stylesheet.css">
|
|
|
|
{% if page.styles %}{{ page.styles }}{% endif %}
|
2023-11-23 22:23:33 -03:00
|
|
|
<title>
|
|
|
|
{% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}
|
|
|
|
</title>
|
|
|
|
|
2024-05-23 01:23:48 -03:00
|
|
|
|
2023-11-23 22:23:33 -03:00
|
|
|
</head>
|
2024-05-23 01:23:48 -03:00
|
|
|
<body>
|
|
|
|
<div class="is-flex is-flex-direction-row is-full-width">
|
|
|
|
<div class="is-flex">
|
|
|
|
{% include SideBar.html %}
|
|
|
|
</div>
|
|
|
|
<div class="is-flex">
|
|
|
|
<div class="is-flex-grow-5 is-flex is-flex-direction-column">
|
|
|
|
{% include TopBar.html %}
|
|
|
|
<main class="">
|
|
|
|
{{ content }}
|
|
|
|
</main>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<footer>
|
|
|
|
<!-- Conteúdo do rodapé -->
|
|
|
|
</footer>
|
|
|
|
</body>
|
|
|
|
</html>
|