@extends('layouts.app') @section('content')
@if ($magazine)
{{ $magazine->number }} {{ $magazine->season }} Arte y Cultura

{{ $magazine->topic }}


@endif @if ($a = $articles->get(0))
{{ $a->subject->name }}

{{ $a->title }}

{!! $a->meta_description !!}

@if($a->author) Por {{ $a->author->name }} {{ $a->author->surname }} @endif
@endif
@if ($a = $articles->get(1))
{{ $a->subject->name }}

{{ $a->title }}

{!! mb_strimwidth(html_entity_decode(strip_tags($a->meta_description)), 0, 250, '...') !!}

@if($a->author) Por {{ $a->author->name }} {{ $a->author->surname }} @endif @endif
@foreach($articles->skip(2) as $a)

{{ $a->subject->name }}

{{ $a->title }}

@if($a->author) Por {{ $a->author->name }} {{ $a->author->surname }} @endif
@endforeach
@if($subjects->count() > 0)

Temas destacados

@foreach($subjects as $a) @endforeach
@endif @if($marticles->count() > 0)

Contenido

@foreach($marticles as $a)
{{ @$a->subject->name }}

{{ strip_tags($a->title) }}

@if($a->author) Por {{ $a->author->name }} {{ $a->author->surname }} @endif
@endforeach @endif @if($podcasts->count() > 0)

Podcast

@foreach($podcasts as $a)

{{ strip_tags($a->title) }}

{!! mb_strimwidth(html_entity_decode(strip_tags($a->meta_description)), 0, 100, '...') !!}

@endforeach
@endif @if($videos->count() > 0)

Video

@foreach($videos as $a)

{{ strip_tags($a->title) }}

{!! mb_strimwidth(html_entity_decode(strip_tags($a->meta_description)), 0, 100, '...') !!}

@endforeach
@endif @if($hindsight->count() > 0)

Liber en retrospectiva

Una selección exclusiva del editor con lo mejor de nuestro archivo

@foreach($hindsight as $a)

{{ strip_tags($a->title) }}

@if($a->author)
Por {{ $a->author->name }} {{ $a->author->surname }}
@endif @if ($a->magazine)
{{ $a->magazine }}
@endif
@endforeach
@endif
@endsection