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