incand/templates/base.html
2026-04-21 01:00:57 -03:00

22 lines
683 B
HTML

<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.simplecss.org/simple.min.css">
<link href="{{ get_url(path="assets/css/overrides.css") }}" rel="stylesheet">
<script defer src="https://stats.jutty.dev/script.js" data-website-id="d83c2773-91fb-4b30-a9fb-30cfb34500d3"></script>
<noscript><img src="https://stats.jutty.dev/p/r5fN3GRrA"></noscript>
<title>Incandescência</title>
</head>
<body>
<section class="section">
<div class="container">
{% block content %} {% endblock content %}
</div>
</section>
</body>
</html>