-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (71 loc) · 3.19 KB
/
index.html
File metadata and controls
77 lines (71 loc) · 3.19 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html ng-app="app">
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<title>The Little Kitchen of Mine</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="css/site.css">
</head>
<body>
<div class="container">
<div class="header">
<h3 >
The Little Kitchen of Mine
<a id="pop" rel="popover" data-placement="bottom" data-container="body" data-content="Made with passion, AngularJS & MixItUp" class="info"> Little about this site</a>
</h3>
<div>
<p> a list of some of my favorite recipies! </p>
<!--<div class="totalAmount"> Total: <span id="amount"> $34,000</span></div>-->
</div>
</div>
<div ng-controller="ItemsController">
<div class="controls">
<button class="btn btn-default filter" data-filter="all">All</button>
<button class="btn btn-default filter" data-filter=".category-{{type}}" ng-repeat="type in types">{{type}}</button>
<!-- <button class="btn btn-default sort" data-sort="myorder:asc">Breakfasts</button>
<button class="btn btn-default sort" data-sort="myorder:desc">Entrees</button>
<button class="btn btn-default sort" data-sort="myorder:desc">Deserts</button>
<button class="btn btn-default sort" data-sort="myrder:desc">Snacks</button> -->
</div>
<div class="test">
<div id="showing" class="mixContainer">
<div class="row">
<div class="mix category-{{item.type}}" data-myorder="{{item.price}}" ng-repeat="item in items">
<a ng-href="{{item.link}}">{{item.name}}
<img class="thumbnail" ng-src="{{item.img}}">
<!--<div class="price"> {{item.price | currency }}</div>-->
<div class="rating"> {{item.rating}}<!-- <span>☆</span><span>☆</span><span>☆</span><span>☆</span><span>☆</span> --></div>
<div class="date"> {{item.date}}</div>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="footer"> All recipies are credited to the original creators!
<div class="container">
<p>©
<script type="text/javascript">
document.write(new Date().getFullYear());
</script>
<a href="http://dinhh.github.io">
Dinh Huynh | Food enthusiast with a dream to open her own restaurant
</a>
</p>
</div>
</div>
<!-- <div id="footer">
<div class="container"> All recipies are credited to the original creators!
<p class="text-muted">© 2015 by <a href="http://dinhh.github.io"> Dinh Huynh | Food enthusiast with a dream to open her own restaurant </a></p>
</div>
</div> -->
</body>
<script type="text/javascript" src="js/jquery-1.10.2.min.js"></script>
<script type="text/javascript" src="js/bootstrap.js"></script>
<script type="text/javascript" src="js/angular.min.js"></script>
<script type="text/javascript" src="js/jquery.mixitup.js"></script>
<script type="text/javascript" src="js/angular-masonry.js"></script>
<script type="text/javascript" src="js/logic.js"></script>
</html>