zdt-prov/templates/base.html
2026-01-14 14:10:44 -03:00

26 lines
810 B
HTML

<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>
{% block title %}Meu Site{% endblock %}
</title>
<style>
body { font-family: Arial, sans-serif; margin: 40px; }
header { background: #333; color: white; padding: 20px; }
nav ul { list-style: none; padding: 0; }
nav li { display: inline; margin: 0 10px; }
nav a { color: white; text-decoration: none; }
</style>
</head>
<body>
{% include "partials/header.html" %}
<main>
{% block content %}<p>Conteúdo padrão</p>{% endblock %}
</main>
<footer>
<p>&copy; 2025 - Feito com ❤️ e Zig</p>
<span>{% now "d/m/Y H:i:s" %}</span>
</footer>
</body>
</html>