2024-01-17 15:43:51 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
|
|
|
|
<head>
|
2024-01-17 16:01:35 +00:00
|
|
|
<title>{% if title %}{{ title }} - {% endif %}Structables</title>
|
2024-01-17 15:43:51 +00:00
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width">
|
|
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
|
|
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='dist/css/bootstrap.min.css') }}">
|
2024-01-17 16:01:35 +00:00
|
|
|
<link rel="icon" type="image/png" href="{{ url_for('static', filename='img/logo.png') }}">
|
2024-01-17 15:43:51 +00:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
{% include "header.html" %}
|
|
|
|
{% block content %}
|
|
|
|
{% endblock %}
|
|
|
|
{% include "footer.html" %}
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|