refomap_adm / templates /base.html
Persano's picture
Create templates/base.html
c346b91 verified
raw
history blame contribute delete
323 Bytes
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>{{ title or 'Sistema de Orçamentos' }}</title>
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
</head>
<body>
<div class="container">
{% block content %}{% endblock %}
</div>
</body>
</html>