24 lines
801 B
PHP
24 lines
801 B
PHP
<ul class="blog small clearfix">
|
|
@foreach($data as $podcast)
|
|
<li class="post">
|
|
<a href="{{url($podcast->url)}}" title="{{$podcast->title}}">
|
|
<img src="{{$podcast->image ? $imgBase . $podcast->image->url : '/images/podcast.png'}}" alt="{{$podcast->title}}">
|
|
</a>
|
|
<div class="post_content">
|
|
<h5>
|
|
<a href="{{url('radio/gemist/fragment/' . $podcast->url)}}" title="{{$podcast->title}}">{{$podcast->title}}</a>
|
|
</h5>
|
|
<ul class="post_details simple">
|
|
@if($podcast->program)
|
|
<li class="category"><a href="{{url('radio/gemist/programma' . $podcast->program->url)}}" title="{{$podcast->program->name}}">{{$podcast->program->name}}</a></li>
|
|
@endif
|
|
<li class="date">
|
|
{{Formatter::relativeDate($podcast->created)}}
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</li>
|
|
@endforeach
|
|
</ul>
|
|
|