mirror of
https://github.com/PotentiaRobotics/robot-gui.git
synced 2025-04-19 18:40:17 -04:00
20 lines
528 B
HTML
20 lines
528 B
HTML
<!-- templates/base.html -->
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
{% assets 'css' %}
|
|
<link rel="stylesheet" href="{{ ASSET_URL }}" />
|
|
{% endassets %}
|
|
|
|
<title>Flask + htmlx + Tailwind CSS</title>
|
|
</head>
|
|
<body class="bg-blue-100">
|
|
{% block content %} {% endblock content %}
|
|
</body>
|
|
</html>
|