-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
29 lines (26 loc) · 1.29 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!-- deprecated, most up to date version of this file is in the ejs template 'index' -->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Find A Buddy</title>
<link rel="stylesheet" href="public/bower_components/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="public/styles/style.css">
<script src="public/bower_components/jquery/dist/jquery.js"></script>
<script src="public/bower_components/react/react.js"></script>
<script src="public/bower_components/react/react-dom.js"></script>
<script src="public/bower_components/lodash/lodash.js"></script>
</head>
<body>
<div id="app"></div>
<script src="public/components/compiled/search-result-list-item.js"></script>
<script src="public/components/compiled/search-result-list.js"></script>
<script src="public/components/compiled/search-options.js"></script>
<script src="public/components/compiled/create-request.js"></script>
<script src="public/components/compiled/notifications.js"></script>
<script src="public/components/compiled/profile.js"></script>
<script src="public/components/compiled/dynamic-content.js"></script>
<script src="public/components/compiled/navbar.js"></script>
<script src="public/components/compiled/app.js"></script>
</body>
</html>