@extends('master') @section('title')Articles « @stop @section('content') @if (count($articles) == 0)

No articles exist for this time.

@endif @foreach ($articles as $article) @if ($article->url != '')
@else
@endif

@if($article->url == '') {{ $article->title }} @else {{ $article->title }} @endif

{!! $article->html !!}
@endforeach {{ $articles->links() }} @stop @section('scripts') @stop