ciclos

ref: balance

src/templates/layout.html


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
<!doctype html>
<html lang="pt-br">
  <head>
    <meta charset="utf-8" />
    {% block title %}
    <title>{{ title }}</title>
    {% endblock %}
  
    <link href="/static/stylesheet.css" rel="stylesheet" />
  </head>

  <body>
    <div class='container-content'>
      {% block body %}
        
      {% endblock %}
    </div>
  </body>

</html>