forked from deweyapp/dewey
-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.html
33 lines (28 loc) · 1.31 KB
/
app.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
30
31
32
33
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="images/favicon.png" rel="shortcut icon">
<title>Dewey</title>
<link rel='stylesheet' href='css/main.css'>
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700' rel='stylesheet' type='text/css'>
<script data-main='js/startup' src='bower_components/requirejs/require.js'></script>
<script id="template/typeahead/typeahead-popup.html" type="text/ng-template">
<ul class="typeahead-dropdown" ng-style="{display: isOpen()&&'block' || 'none'}">
<li class="results-item" ng-repeat="match in matches" ng-class="{active: isActive($index) }" ng-mouseenter="selectActive($index)" ng-click="selectMatch($index)">
<div typeahead-match index="$index" match="match" query="query" template-url="templateUrl"></div>
</li>
</ul>
</script>
<script id="template/modal/window.html" type="text/ng-template">
<div tabindex="-1" class="modal fade {{ windowClass }}" ng-class="{in: animate}" ng-click="close($event)">
<div class="modal-dialog" ng-transclude></div>
</div>
</script>
</head>
<body>
<div ng-view></div>
<div class="row" id="loadMorePlaceholder" />
</body>
</html>