-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (35 loc) · 1.54 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
30
31
32
33
34
35
36
37
38
39
40
<!doctype html>
<html class="no-js">
<head>
<meta charset="utf-8">
<title>Dagens lunch</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="styles/main.css">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300' rel='stylesheet' type='text/css'>
<link rel="icon" type="image/x-icon" href="favicon.ico">
</head>
<body ng-app="lunchFrontendApp" ng-controller="MainCtrl as vm">
<div class="container">
<div ng-view></div>
<footer>
<div class="last-updated" ng-hide="vm.isWeekend">
Senast uppdaterad {{vm.lastUpdated | date : 'yyyy-MM-dd'}}
</div>
<div class="github">
<img src="images/GitHub.png" alt="GitHub logo">
<a href="https://github.com/cfj/lunch-menu-scraper">Scraper</a> |
<a href="https://github.com/cfj/lunch-menu-frontend">Frontend</a>
</div>
</footer>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.3.15/angular-route.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.3.15/angular-sanitize.min.js"></script>
<!-- build:js({.tmp,app}) scripts/scripts.js -->
<script src="scripts/app.js"></script>
<script src="scripts/controllers/main.js"></script>
<script src="scripts/services/menuservice.js"></script>
<!-- endbuild -->
</body>
</html>