-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (23 loc) · 917 Bytes
/
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
<!DOCTYPE html>
<html lang="en" ng-app="lsoh">
<head>
<title>Little Shops of Horror</title>
<meta charset="utf-8">
<meta name="description" content="Funny, disturbing, or crappy images.">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<base href="/">
<link href="screen.css" rel="stylesheet">
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.8/angular.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.8/angular-route.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.8/angular-resource.js"></script>
<script src="/scripts/app.js"></script>
<script src="/scripts/routes.js"></script>
<script src="/scripts/controllers.js"></script>
<script src="/scripts/directives.js"></script>
<script src="/scripts/services.js"></script>
</head>
<body>
<h1>Little ’Shops of Horror</h1>
<div ng-view></div>
</body>
</html>