<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/>
<meta name="description" content="overview & stats"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0"/>
{% block headers %}
{% endblock headers %}
{% block title %}
{% endblock title %}
{% block stylesheets %}
<link rel="stylesheet" href="{{ absolute_url(asset('ace/css/ace.css')) }}" class="ace-main-stylesheet" id="main-ace-style" />
<link rel="stylesheet" href="{{ absolute_url(asset('ace/css/bootstrap.css')) }}"/>
<link rel="stylesheet" href="{{ absolute_url(asset('css/all.css')) }}"/>
<link rel="stylesheet" href="{{ absolute_url(asset('css/aplication.css')) }}" type="text/css"/>
<style>
@page { margin: 100px 25px; }
{% block css_header %}
header { position: fixed; top: -60px; left: 0px; right: 0px; background-color: lightblue; height: 35px; }
{% endblock css_header %}
{% block css_footer %}
footer { position: fixed; bottom: -60px; left: 0px; right: 0px; background-color: lightblue; height: 35px; }
{% endblock css_footer %}
</style>
{% endblock %}
</head>
<body style="background-color: white">
<header>
{% block header %}
{% endblock header %}
</header>
<footer>
{% block footer %}
{% endblock footer %}
</footer>
<main>
{% block body %}
{% endblock body %}
</main>
</body>
</html>