mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-23 05:27:59 +01:00
26 lines
No EOL
1.1 KiB
HTML
26 lines
No EOL
1.1 KiB
HTML
<div class="resource-details artist-details" bindonce="artist">
|
|
<ul class="dropdowns">
|
|
<li class="dropdown">
|
|
<a href="#" class="btn btn-small" ng-class="{'btn-primary': !artist.user_data.is_following}" ng-show="auth.isLogged && auth.user.id != artist.id" pfm-eat-click ng-click="toggleFollow()">
|
|
<span ng-hide="artist.user_data.is_following">Follow</span>
|
|
<span ng-show="artist.user_data.is_following">Following!</span>
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a target="_blank" bo-href="artist.message_url" class="btn btn-small">
|
|
Send a Message
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
<header>
|
|
<h1 bo-text="artist.name"></h1>
|
|
<ul class="tabs">
|
|
<li ng-class="{active: stateIncludes('content.artist.profile')}"><a href="{{artist.slug}}">Profile</a></li>
|
|
<li ng-class="{active: stateIncludes('content.artist.content')}"><a href="{{artist.slug}}/content">Content</a></li>
|
|
<li ng-class="{active: stateIncludes('content.artist.favourites')}"><a href="{{artist.slug}}/favourites">Favourites</a></li>
|
|
</ul>
|
|
</header>
|
|
<div class="stretch-to-bottom">
|
|
<ui-view></ui-view>
|
|
</div>
|
|
</div> |