</head>
<body>
	<?php echo app('translator')->get('messages.title'); ?><?php echo e(': '.$news->title); ?><br>
	<?php echo app('translator')->get('messages.publish_dept'); ?><?php echo e(': '.$news->author); ?><br>
	<?php echo app('translator')->get('messages.publish_date'); ?><?php echo e(': '.$news->created_at); ?><br>
	
	<?php if($news->file != ''): ?>
        <?php echo app('translator')->get('messages.attachment'); ?>： <a href='<?php echo e($news->file); ?>'><?php echo app('translator')->get('messages.clickMeToViewAttachment'); ?></a><br>
    <?php endif; ?>
    <?php if($news->link != ''): ?> 
        <?php echo app('translator')->get('messages.related_link'); ?>： <a href='<?php echo e($news->link); ?>'><?php echo app('translator')->get('messages.clickMeToViewLink'); ?></a><br>
    <?php endif; ?>
    <?php if($news->cover_img != ''): ?>
        <img src='<?php echo e($news->cover_img); ?>' style='width:100%;'/><br> 
    <?php endif; ?>
    <?php if($news->content != ''): ?>
    	<?php echo $news->content; ?>

    <?php endif; ?>
    <br><hr>
    
</body>

</html>

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