Files
LabEngSW/templates/base.html

13 lines
384 B
HTML
Raw Normal View History

2025-03-16 00:25:09 -03:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2025-03-16 22:57:23 -03:00
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="{{ url_for('static', filename='css/main.css') }}">
2025-03-16 00:25:09 -03:00
{% block head %}{% endblock %}
</head>
<body>
{% block body %}{% endblock %}
</body>
</html>