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