20 lines
546 B
HTML
20 lines
546 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>RGB {% block title %}{% endblock %} </title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1 maximum-scale=1.0, user-scalable=0" />
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='app.css') }}">
|
|
<script type="text/javascript" src="{{ url_for('static', filename='app.js') }}"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div>
|
|
<h1>RGB controller</h1>
|
|
<div class="center">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|