Persano commited on
Commit
c346b91
·
verified ·
1 Parent(s): 7ebbbd9

Create templates/base.html

Browse files
Files changed (1) hide show
  1. 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>