@extends($_layout.'master')
@include($_lib.'register-meta')
@section('body')
{!! $article->content !!}
@include($_template.'related-posts',[
'list' => $helper->getRelatedPosts($article, 3),
'title' => 'Tin liên quan'
])
@include($_template.'comments',[
'comments' => $article->publishComments,
'ref' => 'page',
'ref_id' => $article->id,
'url' => $article->getViewUrl()
])
@endsection