<?php $__env->startSection('css_page_level'); ?>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('page-content'); ?>
            <!-- CONTENT -->
            <div class="wrap-fluid" id="paper-bg">
                <div class="row">
                    <div class="col-lg-12">
                        <div class="box">
                            <div class="box-header">
                                <!-- tools box -->
                                <div class="pull-right box-tools">
                                    <a href="<?php echo e(route('website::news' , ['type'=> $news->column])); ?>">
                                    <span class="box-btn"><i class="fa fa-times"></i>
                                    </span>
                                    </a>
                                </div>
                                <h3 class="box-title"><i class="fontello-doc"></i>
                                    <h1><?php echo e($news->title); ?></h1>
                                </h3>
                            </div>
                            <!-- /.box-header -->
                            <div class="box-body">
                                <!-- Author -->
                                <p class="lead">
                                    <?php echo app('translator')->get('messages.yooooo'); ?> <a href="javascript:;"><?php echo e($news->author); ?></a> <?php echo app('translator')->get('messages.publishhhhh'); ?>
                                </p>

                                <hr>

                                <!-- Date/Time -->
                                <p><span class="glyphicon glyphicon-time"></span><?php echo e($news->time); ?></p>
                                <?php if($news->cover_img != ''): ?>
                                <img src="<?php echo e($news->cover_img); ?>" style="width:90%;">
                                <hr>
                                <?php endif; ?>
                                <?php if($news->file != ''): ?>
                                <p><span class="icon-attachment"></span><?php echo app('translator')->get('messages.down_annex'); ?> :
                                    <?php if($news->file != ''): ?>
                                        <a type="button" class="btn btn-link" href="<?php echo e($news->file); ?>"><?php echo app('translator')->get('messages.check_annex'); ?></a>
                                    <?php endif; ?>
                                </p>

                                <?php endif; ?>
                                <?php if($news->link != ''): ?>
                                <p><span class="icon-window"></span><?php echo app('translator')->get('messages.related_link'); ?> :
                                    <a href="<?php echo e($news->link); ?>"><?php echo e($news->link); ?></a>
                                </p>
                                <?php endif; ?>
                                <hr>

                                <?php echo $news->content; ?>


                                <!-- Blog Comments -->
                              
                                <hr>

                            </div>
                            <!-- /.box-body -->
                        </div>
                        <!-- /.box -->
                    </div>
                </div>


            </div>
            <!-- #/paper bg -->
<?php $__env->stopSection(); ?>

<?php echo $__env->make('layout.front', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>