core/templates/index.html

16 lines
420 B
HTML
Raw Normal View History

2020-12-07 21:52:47 +00:00
<!doctype html>
2020-12-08 15:46:26 +00:00
<html class="h-100">
2020-12-08 12:21:49 +00:00
<head>
2020-12-08 15:46:26 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='index.css') }}">
2020-12-08 12:21:49 +00:00
</head>
2020-12-07 21:52:47 +00:00
<title>Rustico</title>
2020-12-07 21:52:47 +00:00
2020-12-08 15:46:26 +00:00
<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>
2020-12-08 15:46:26 +00:00
</body>
</html>