-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (20 loc) · 724 Bytes
/
index.html
File metadata and controls
27 lines (20 loc) · 724 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Euler Platform</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular-route.js"></script>
</head>
<body ng-app="EulerApp">
<h1>Implementation and answer for Euler500 problems</h1>
<div ng-view></div>
<!-- Modules -->
<script src="js/app.js"></script>
<!-- Controllers -->
<script src="js/controllers/HomePageController.js"></script>
<script src="js/controllers/ProblemController.js"></script>
<!-- services -->
<script src="js/services/solutions.js"></script>
</body>
</html>