mirror of https://github.com/pixelfed/pixelfed.git
66 lines
3.0 KiB
PHP
66 lines
3.0 KiB
PHP
|
@extends('layouts.app',['title' => $user->username . " posted a photo: " . $status->likes_count . " likes, " . $status->comments_count . " comments" ])
|
||
|
|
||
|
@section('content')
|
||
|
|
||
|
<div class="container px-0 mt-md-4">
|
||
|
<div class="card card-md-rounded-0 status-container orientation-{{$status->firstMedia()->orientation ?? 'unknown'}}">
|
||
|
<div class="row mx-0">
|
||
|
<div class="d-flex d-md-none align-items-center justify-content-between card-header bg-white w-100">
|
||
|
<a href="{{$user->url()}}" class="d-flex align-items-center status-username text-truncate" data-toggle="tooltip" data-placement="bottom" title="{{$user->username}}">
|
||
|
<div class="status-avatar mr-2">
|
||
|
<img src="{{$user->avatarUrl()}}" width="24px" height="24px" style="border-radius:12px;">
|
||
|
</div>
|
||
|
<div class="username">
|
||
|
<span class="username-link font-weight-bold text-dark">{{$user->username}}</span>
|
||
|
</div>
|
||
|
</a>
|
||
|
</div>
|
||
|
<div class="col-12 col-md-8 status-photo px-0">
|
||
|
@if($status->is_nsfw)
|
||
|
<details class="details-animated">
|
||
|
<summary>
|
||
|
<p class="mb-0 lead font-weight-bold">CW / NSFW / Hidden Media</p>
|
||
|
<p class="font-weight-light">(click to show)</p>
|
||
|
</summary>
|
||
|
@endif
|
||
|
<div id="photoCarousel" class="carousel slide carousel-fade" data-ride="carousel">
|
||
|
<ol class="carousel-indicators">
|
||
|
@for($i = 0; $i < $status->media_count; $i++)
|
||
|
<li data-target="#photoCarousel" data-slide-to="{{$i}}" class="{{$i == 0 ? 'active' : ''}}"></li>
|
||
|
@endfor
|
||
|
</ol>
|
||
|
<div class="carousel-inner">
|
||
|
@foreach($status->media()->orderBy('order')->get() as $media)
|
||
|
<div class="carousel-item {{$loop->iteration == 1 ? 'active' : ''}}">
|
||
|
<figure class="{{$media->filter_class}}">
|
||
|
<img class="d-block w-100" src="{{$media->url()}}" title="{{$media->caption}}" data-toggle="tooltip" data-placement="bottom">
|
||
|
</figure>
|
||
|
</div>
|
||
|
@endforeach
|
||
|
</div>
|
||
|
<a class="carousel-control-prev" href="#photoCarousel" role="button" data-slide="prev">
|
||
|
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
|
||
|
<span class="sr-only">Previous</span>
|
||
|
</a>
|
||
|
<a class="carousel-control-next" href="#photoCarousel" role="button" data-slide="next">
|
||
|
<span class="carousel-control-next-icon" aria-hidden="true"></span>
|
||
|
<span class="sr-only">Next</span>
|
||
|
</a>
|
||
|
</div>
|
||
|
@if($status->is_nsfw)
|
||
|
</details>
|
||
|
@endif
|
||
|
</div>
|
||
|
@include('status.show.sidebar')
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
@endsection
|
||
|
|
||
|
@push('meta')
|
||
|
<meta property="og:description" content="{{ $status->caption }}">
|
||
|
<meta property="og:image" content="{{$status->mediaUrl()}}">
|
||
|
<link href='{{$status->url()}}' rel='alternate' type='application/activity+json'>
|
||
|
@endpush
|