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.
xshop/resources/views/segments/post/SimplePost/SimplePost.blade.php

65 lines
2.4 KiB
PHTML

3 months ago
<section class='SimplePost content'>
<div class="{{gfx()['container']}}">
<div class="p-2">
3 weeks ago
<span class="float-end text-muted">
{{__("Time spend")}}: {{$post->spendTime()}}
</span>
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item">
<a href="{{homeUrl()}}">
{{config('app.name')}}
</a>
</li>
<li class="breadcrumb-item">
<a href="{{$post->mainGroup->webUrl()}}">
{{$post->mainGroup->name}}
</a>
</li>
<li class="breadcrumb-item active" aria-current="page">
{{$post->title}}
</li>
</ol>
</nav>
<img src="{{$post->orgUrl()}}" alt="" class="img-fluid" loading="lazy">
3 months ago
<p class="text-muted my-3">
{{$post->subtitle}}
</p>
<div class="row text-center">
3 months ago
<div class="col-md">
<i class="ri-calendar-line"></i>
{{$post->created_at->ldate('Y/m/d H:i')}}
</div>
<div class="col-md">
<i class="ri-message-line"></i>
{{number_format($post->approvedComments()->count())}}
</div>
<div class="col-md">
<i class="ri-eye-line"></i>
{{number_format($post->view)}}
3 months ago
</div>
@if($post->tags()->count() > 0)
<div class="col-md-6">
{{__("Tags")}}:
@foreach($post->tags as $tag)
<a href="{{tagUrl($tag->slug)}}" class="tag me-2">
<i class="ri-price-tag-line"></i>
{{$tag->name}}
</a>
@endforeach
</div>
@endif
3 months ago
</div>
<hr>
@if($post->table_of_contents)
{!! $post->tableOfContents() !!}
{!! $post->bodyContent() !!}
@else
{!! $post->body !!}
@endif
3 months ago
</div>
</div>
</section>