![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/syn.corals.io/Corals/modules/CMS/resources/views/cms_internal/ |
@extends('layouts.master') @section('title', $item->title) @section('content') @include('CMS::cms_internal.partials.page_header') <div class="row"> <div class="{{ $blog->template != 'full'?'col-md-8':'col-md-12' }} {{ $blog->template =='left'?'col-md-offset-4':'' }}"> <div class=""> <span>{{ format_date($item->published_at) }} By <b>{{ $item->author->full_name }}</b></span> </div> <h2>{{ $item->title }}</h2> {!! $item->rendered !!} <div> @foreach($item->post->activeCategories as $category) <a href="{{ url('category/'.$category->slug) }}" class="m-r-5"><span class="label label-success"><i class="fa fa-folder-open-o"></i> {{ $category->name }} </span></a> @endforeach @foreach($item->post->activeTags as $tag) <a href="{{ url('tag/'.$tag->slug) }}" class="m-r-5"><span class="label label-primary"><i class="fa fa-tag"></i> {{ $tag->name }} </span></a> @endforeach </div> </div> @if(in_array($blog->template,['left','right'])) <div class="{{ 'col-md-4' }}"> @include('CMS::cms_internal.partials.blog_sidebar') </div> @endif </div> @stop