-
Notifications
You must be signed in to change notification settings - Fork 0
/
wall.html
76 lines (65 loc) · 3.24 KB
/
wall.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
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
<!doctype html>
<html class="no-js" lang="en" ng-app="qred-profile">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Foundation | Welcome</title>
<link rel="stylesheet" href="css/foundation.css" />
<link rel="stylesheet" href="css/foundation-icons.css">
<link href='http://fonts.googleapis.com/css?family=Alegreya' rel='stylesheet' type='text/css'>
<script src="js/vendor/modernizr.js"></script>
<script src="js/angular.min.js"></script>
<script src="js/profile.js"></script>
</head>
<body style="background-image:url(img/business.jpg)">
<div class="row">
<div class="large-3 columns">
<div class="panel">
<h1>My Wallet</h1>
</div>
</div>
<div class="large-9 columns">
<ul class="right button-group">
<a href="profile.html" class="success button inline">View My Profile</a>
<a href="mycard.html" class="secondary button inline">View My Card</a>
<a href="edit_profile.html" class="button inline">Edit My Profile</a>
<a href="#" class="alert button inline">Sign Out</a>
</ul>
</div>
</div>
<div ng-controller="RolodexController as rolo" style= "font-family: 'Alegreya', serif;">
<div class="large-12 columns" style = "padding-top: 0.5cm " ng-repeat="duocards in cards" ng-if="$index % 2 == 0">
<div class="row">
<a href="profile.html" ng-repeat="card in cards.slice($index, $index+2)">
<div class="large-6 small-6 columns" >
<div class="panel" onMouseOver="this.style.backgroundColor='#E0E0E0'" onMouseOut="this.style.backgroundColor='white'" style = "padding:30px">
<h5 style="font-family: 'Alegreya', serif">{{ card.name }}</h5>
<h6 style="font-family: 'Alegreya', serif" class="subheader">{{ card.company }}</h6>
<div class="row">
<div class="large-5 columns" style="padding: 0px"><i class="fi-telephone"></i> {{card.phone_number}}</div>
<div class="large-7 columns end" style="padding: 0px"> <i class="fi-mail"></i> {{ card.email }}</div></div>
<div class="row">
<i class="fi-web"></i> {{card.site}}
</div>
<div class="row">
<i class="fi-address-book"></i> {{card.address}}, {{card.city}}, {{card.state}}, {{card.country}}
</div>
</div>
</div>
</a>
</div>
</div>
<footer class="row">
<div class="large-12 columns">
<hr/>
<div class="row">
<div class="large-6 columns">
<p>© Copyright no one at all. Go to town.</p>
</div>
</div>
</div>
</footer>
</div>
</div>
</body>
</html>