mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-06-03 09:29:43 +00:00
36 lines
773 B
HTML
36 lines
773 B
HTML
<div ng-controller="AppCtrl" layout="column" layout-fill>
|
|
|
|
<md-toolbar md-scroll-shrink>
|
|
<div class="md-toolbar-tools">
|
|
<h3>
|
|
<span>My App Title</span>
|
|
</h3>
|
|
</div>
|
|
</md-toolbar>
|
|
|
|
<md-content style="height: 600px;">
|
|
|
|
<md-list>
|
|
|
|
<md-item ng-repeat="item in todos">
|
|
<md-item-content>
|
|
<div class="md-tile-left">
|
|
<img ng-src="{{item.face}}" alt="{{item.who}}" class="face">
|
|
</div>
|
|
<div class="md-tile-content">
|
|
<h3>{{item.what}}</h3>
|
|
<h4>{{item.who}}</h4>
|
|
<p>
|
|
{{item.notes}}
|
|
</p>
|
|
</div>
|
|
</md-item-content>
|
|
<md-divider inset></md-divider>
|
|
</md-item>
|
|
|
|
</md-list>
|
|
|
|
</md-content>
|
|
|
|
</div>
|