-
Notifications
You must be signed in to change notification settings - Fork 2
/
friends.html
40 lines (40 loc) · 1.48 KB
/
friends.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
<style>
@import "/bower_components/angular-material/angular-material.css";
</style>
<section id="friends-app">
<header id="header">
<md-content class="md-padding">
<h1>My Friends</h1>
</md-content>
</header>
<section id="main">
<md-content>
<md-card !foreach="#friend in friends">
<md-item>
<md-item-content>
<div class="md-tile-left">
<img src="icon-person-128.png" class="face">
</div>
<div class="md-tile-content">
<h2>{{friend.name}}</h2>
<h3>{{friend.age}} Years Old</h3>
<div>
<h4>
<button (click)="toggleDetails(friend)">{{ friend.showDetails ? 'Hide Details' : 'Show Details'}}</button>
</h4>
<div [hidden]="!friend.showDetails">
<p>Where we met: {{friend.whereWeMet}}</p>
<p>How we met: {{friend.howWeMet}}</p>
</div>
</div>
</div>
</md-item-content>
</md-item>
</md-card>
</md-content>
</section>
<footer id="footer">
</footer>
</section>
<footer id="info">
</footer>