20 lines
660 B
HTML
20 lines
660 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>WebPrint | {% block title %}Default Title{% endblock %}</title>
|
|
<link rel="shortcut icon" href="{{ url_for('static', filename='style/fav.png') }}" type="image/x-icon">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='style/style.css') }}">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
{% block header %}WebPrint{% endblock %}
|
|
</header>
|
|
<div class="container">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
{% block script %}
|
|
{% endblock %}
|
|
</body>
|
|
</html> |