Spaces:
No application file
No application file
Create templates/base.html
Browse files- templates/base.html +13 -0
templates/base.html
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="pt-br">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<title>{{ title or 'Sistema de Orçamentos' }}</title>
|
6 |
+
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
|
7 |
+
</head>
|
8 |
+
<body>
|
9 |
+
<div class="container">
|
10 |
+
{% block content %}{% endblock %}
|
11 |
+
</div>
|
12 |
+
</body>
|
13 |
+
</html>
|