core/templates/index.html
2020-12-16 12:57:29 +00:00

16 lines
420 B
HTML

<!doctype html>
<html class="h-100">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='index.css') }}">
</head>
<title>Rustico</title>
<body class="h-100 d-flex flex-column">
<div id="root" class="d-flex flex-fill"></div>
<script src="{{ url_for('static', filename='index.js') }}"></script>
</body>
</html>