mirror of https://github.com/pixelfed/pixelfed
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
450 B
PHTML
23 lines
450 B
PHTML
7 years ago
|
@extends('layouts.app')
|
||
|
|
||
|
@section('content')
|
||
|
|
||
|
<div class="container">
|
||
|
<div class="col-12 col-md-8 offset-md-2 mt-4">
|
||
|
@php($item = $status->parent())
|
||
|
@php($showSingleComment = true)
|
||
|
@include('status.template')
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
@endsection
|
||
|
|
||
|
@push('scripts')
|
||
|
<script type="text/javascript">
|
||
|
$(document).ready(function() {
|
||
|
$('.reactions').hide();
|
||
|
$('.more-comments').hide();
|
||
|
$('.card-footer').hide();
|
||
|
});
|
||
|
</script>
|
||
|
@endpush
|