@extends('web.page') @section('page_class', 'template-post_normal') @section('title_prefix', $item->title.' - ') @section('description', $item->description) @section('keywords', implode(', ',$item->tags->where('lang', Lang::getLocale())->pluck('name')->toArray())) @section('content') {{ $item->title }} @if($item->description) {{ $item->description }} @endif {!! $item->content !!} @foreach($item->documents as $document) {{ $document->description }} @endforeach @foreach($item->images as $image) @if($image->id != $item->header_image_id) @endif @endforeach @stop