-
Notifications
You must be signed in to change notification settings - Fork 0
/
members_ba.html
25 lines (25 loc) · 1.01 KB
/
members_ba.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
<md-content class="md-padding" ng-controller="projects_controller">
<md-divider />
<md-content ng-repeat="i in rep">
<div class="md-padding" layout="row" layout-wrap>
<md-card flex="33" md-theme="{{ showDarkTheme ? 'dark-orange' : 'default' }}" md-theme-watch>
<md-card-title>
<md-card-title-text>
<span class="md-headline">Team Member {{i}}</span>
</md-card-title-text>
</md-card-title>
<md-card-content>
<p> Business Analysis</p>
</md-card-content>
<div>
<img ng-src="src/download.png" class="ng-card-image">
</div>
<md-card-actions layout="row" layout-align="center center">
<md-button class="md-icon-button" ng-click="liker()" aria-label="Like">
<md-icon md-svg-icon="src/eye.svg"></md-icon>
</md-button>
</md-card-actions>
</md-card>
</div>
</md-content>
</md-content>