macropad/templates/index.html
2022-11-29 21:22:30 +01:00

25 lines
728 B
HTML

<html>
<head>
<title>macropad (tbn)</title>
<script src="https://code.jquery.com/jquery-3.6.1.js"></script>
</head>
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='style.css') }}" />
<body class="noselect">
{% if is_local %}
<a href="/configure" style="margin:20px; display:inline-block">Configure</a>
{% endif %}
<div id="blocks">
<!--a class="block">{{ time }}</a-->
</div>
<script src="{{ url_for('static', filename='widgets.js') }}"></script>
{% for app in apps %}
<script>
addApplet({{ app|tojson }})
</script>
{% endfor %}
</body>
</html>