Pony.fm/public/templates/artists/_show_layout.html
2016-06-20 02:45:30 +01:00

32 lines
1.7 KiB
HTML

<div class="resource-details artist-details fixed-tabs" ng-class="::{'x-archived': artist.is_archived}">
<header ng-style="{'background-image': 'linear-gradient(135deg, ' + artist.avatar_colors[0] + ' 15%, ' + artist.avatar_colors[1] + ' 100%)'}">
<img src="{{artist.avatars.normal}}">
<div class="artist-right">
<h1>{{artist.name}}<i class="fa fa-star admin-star" ng-show="::artist.isAdmin" data-title="Admin" bs-tooltip></i></h1>
<p class="follower-count">
<ng-pluralize count="artist.followers"
when="{'0': 'No followers',
'one': '1 follower',
'other': '{} followers'}">
</ng-pluralize>
</p>
<a href="#" class="btn btn-default" 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-if="!artist.user_data.is_following">Follow</span>
<span ng-if="artist.user_data.is_following">Following!</span>
</a>
</div>
</header>
<ul class="tabs fixed">
<li ui-sref-active="active"><a ui-sref=".profile">Profile</a></li>
<li ui-sref-active="active"><a ui-sref=".content">Content</a></li>
<li ng-if="::!artist.is_archived" ui-sref-active="active">
<a ui-sref=".favourites">Favourites</a>
</li>
<li ng-if="::artist.permissions.edit" ui-sref-active="{active: '.account'}"><a ui-sref=".account.settings">Manage Account</a></li>
</ul>
<div class="stretch-to-bottom secondary-content">
<ui-view></ui-view>
</div>
</div>