core/templates/index.html

16 lines
348 B
HTML
Raw Normal View History

2020-12-07 21:52:47 +00:00
<!doctype html>
<html>
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
<body>
<div id="root"></div>
<script src="{{ url_for('static', filename='index.js') }}"></script>
2020-12-08 15:46:26 +00:00
</body>
</html>