mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-22 14:31:26 +00:00
Add comment/reply permalink view
This commit is contained in:
parent
f657bba76b
commit
5a41542291
1 changed files with 23 additions and 0 deletions
23
resources/views/status/reply.blade.php
Normal file
23
resources/views/status/reply.blade.php
Normal file
|
@ -0,0 +1,23 @@
|
|||
@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
|
Loading…
Reference in a new issue