mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-22 21:18:00 +01:00
68 lines
No EOL
2.8 KiB
PHP
68 lines
No EOL
2.8 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en-CA">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{{$track->title}} by {{$track->user->display_name}} on Pony.fm</title>
|
|
<meta itemprop="name" content="Pony.fm">
|
|
<meta property="og:title" content="Pony.fm - The Pony Music Hosting Site" />
|
|
<meta property="og:type" content="website" />
|
|
<meta property="og:url" content="https://pony.fm/" />
|
|
<meta property="og:image" content="https://pony.fm/favicon.ico" />
|
|
<meta property="og:site_name" content="Pony.fm" />
|
|
<meta property="fb:admins" content="1165335382" />
|
|
<base href="/" />
|
|
|
|
{!! Assets::styleIncludes('embed') !!}
|
|
</head>
|
|
<body>
|
|
@if($track->explicit && !(Auth::check() && Auth::user()->can_see_explicit_content))
|
|
<div class="explicit alert alert-danger">
|
|
<em>Enable explicit content in {{ HTML::link(URL::to('/account/settings'), 'your account', ['target' => '_blank']) }} to play this track.</em>
|
|
<div class="stats">
|
|
<span>Hosted by <a href="{{URL::to('/')}}" target="_blank">Pony.fm</a></span>
|
|
</div>
|
|
</div>
|
|
@else
|
|
<div class="player loading {{Auth::check() ? 'can-favourite' : ''}} {{$user['is_favourited'] ? 'favourited' : ''}}" data-track-id="{{ $track->id }}" data-duration="{{ $track->duration * 1000 }}">
|
|
<div class="play" disabled="disabled">
|
|
<div class="button"><i class="icon-play"></i></div>
|
|
{{ HTML::image($track->getCoverUrl(\App\Image::SMALL)) }}
|
|
</div>
|
|
<div class="meta">
|
|
@if (Auth::check())
|
|
<a href="#" class="favourite"><i title="Favourite this track!" class="favourite-icon icon-star-empty"></i></a>
|
|
@endif
|
|
<div class="progressbar">
|
|
<div class="loader"></div>
|
|
<div class="seeker"></div>
|
|
</div>
|
|
<span class="title">{{ HTML::link( $track->url, $track->title, ['target' => '_blank'] ) }}</span>
|
|
<span>by: <strong>{{ HTML::link($track->user->url, $track->user->display_name, ['target' => '_blank']) }}</strong> / {{$track->genre->name}} / {{Helpers::timestamp($track->published_at)}}</span>
|
|
</div>
|
|
<div class="stats">
|
|
Views: <strong>{{ $track->view_count }}</strong> / Plays: <strong>{{ $track->play_count }}</strong> / Downloads: <strong>{{ $track->download_count }}</strong> /
|
|
<span>Hosted by <a href="{{URL::to('/')}}" target="_blank">Pony.fm</a></span>
|
|
</div>
|
|
</div>
|
|
@endif
|
|
|
|
<script>
|
|
var pfm = {token: '{{ Session::token() }}'}
|
|
</script>
|
|
|
|
{!! Assets::scriptIncludes('embed') !!}
|
|
|
|
<script type="text/javascript">
|
|
var _gaq = _gaq || [];
|
|
_gaq.push(['_setAccount', 'UA-29463256-1']);
|
|
_gaq.push(['_setDomainName', 'pony.fm']);
|
|
_gaq.push(['_trackPageview']);
|
|
|
|
(function() {
|
|
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
|
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
|
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
|
})();
|
|
</script>
|
|
</body>
|
|
</html> |