WMGZON/templates/index.html

18 lines
656 B
HTML
Raw Normal View History

2023-12-15 20:25:23 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2023-12-27 22:16:23 +00:00
<link rel="stylesheet" href="{{url_for('static', filename='css/style.css')}}" />
2024-01-05 13:56:46 +00:00
<link rel="stylesheet" href="{{url_for('static', filename='css/loginform.css')}}" />
<link rel="stylesheet" href="{{url_for('static', filename='css/alerts.css')}}" />
<link href="http://fonts.cdnfonts.com/css/uk-number-plate" rel="stylesheet">
2023-12-15 20:25:23 +00:00
<title>WMGZON</title>
</head>
<body>
2023-12-31 16:59:53 +00:00
{% include 'header.html' %}
2024-01-05 21:16:02 +00:00
<div class="container container-fixed">
2023-12-31 19:03:29 +00:00
{% include content %}
</div>
2023-12-15 20:25:23 +00:00
</body>
</html>