mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-23 05:27:59 +01:00
15 lines
399 B
HTML
15 lines
399 B
HTML
|
<ul class="artist-listing stretch-to-bottom">
|
||
|
<li ng-repeat="artist in artists">
|
||
|
<a href="{{artist.url}}">
|
||
|
<img class="image" ng-src="{{artist.avatars.normal}}" />
|
||
|
<span class="title">{{artist.name}}</span>
|
||
|
<span class="published">
|
||
|
joined {{artist.created_at | momentFromNow}}
|
||
|
</span>
|
||
|
</a>
|
||
|
</li>
|
||
|
<li ng-show="!artists.length" class="empty">
|
||
|
No artists found...
|
||
|
</li>
|
||
|
</ul>
|