Skip to content

Commit 05025aa

Browse files
committed
Move the filter app into index.html
1 parent cfe33c6 commit 05025aa

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

project/templates/index.html

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,19 @@
55
<title>Flask React</title>
66
<meta name="viewport" content="width=device-width, initial-scale=1.0">
77
<!-- styles -->
8+
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='bower_components/bootstrap/dist/css/bootstrap.min.css') }}">
9+
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/style.css') }}">
810
</head>
911
<body>
1012
<div class="container">
1113
<h1>Flask React</h1>
1214
<br>
13-
<div id="content"></div>
15+
<div id="main"></div>
1416
</div>
1517
<!-- scripts -->
18+
<script src="{{ url_for('static', filename='bower_components/react/react.min.js') }}"></script>
19+
<script src="{{ url_for('static', filename='bower_components/jquery/dist/jquery.min.js') }}"></script>
20+
<script src="{{ url_for('static', filename='bower_components/bootstrap/dist/js/bootstrap.min.js') }}"></script>
21+
<script src="{{ url_for('static', filename='scripts/js/main.js') }}"></script>
1622
</body>
1723
</html>

0 commit comments

Comments
 (0)