-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (25 loc) · 1003 Bytes
/
index.html
File metadata and controls
30 lines (25 loc) · 1003 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
28
29
30
<!DOCTYPE html>
<html lang="en" ng-app="snippyApp">
<head>
<meta charset="UTF-8">
<title>Snipply.io</title>
<!-- angularJS -->
<script src="vendor/angular/angular.js"></script>
<script src="vendor/angular/angular-route.js"></script>
<script src="vendor/angular/angular-animate.js"></script>
<!-- bootstrap -->
<link rel="stylesheet" href="vendor/bootswatch/darkly/bootstrap.min.css">
<!--<link rel="stylesheet" href="vendor/bootstrap/css/bootstrap.min.css">-->
<link rel="stylesheet" href="vendor/bootstrap/css/bootstrap-theme.min.css">
<!--<script src="vendor/bootstrap/js/bootstrap.min.js"></script>-->
<!-- prism -->
<script src="vendor/prism/prism.js"></script>
<link rel="stylesheet" href="vendor/prism/prism.css">
<script src="app/scripts/app.js"></script>
<script src="app/scripts/controllers/SnippetController.js"></script>
<link rel="stylesheet" href="app/styles/main.css">
</head>
<body>
<div class="main {{ bodyClass }}" ng-view></div>
</body>
</html>