incand/templates/base.html
2025-09-03 22:19:25 -03:00

17 lines
264 B
HTML

<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<title>Incandescência</title>
</head>
<body>
<section class="section">
<div class="container">
{% block content %} {% endblock content %}
</div>
</section>
</body>
</html>