Fix a few broken links

This commit is contained in:
2020-02-05 00:57:12 +01:00
parent 74d3219e10
commit fab9efbdf7
4 changed files with 9 additions and 9 deletions

View File

@@ -119,7 +119,7 @@ function buildMenu($menu, $ismobile) {
<img src='{{$imgBase . $item->image->url}}' alt='{{$item->title}}'>
</a>
@endif
<h5><a href="{{url($item->url)}}" title="{{$item->title}}">{{$item->title}}</a></h5>
<h5><a href="{{route('gemist.details') . $item->url}}" title="{{$item->title}}">{{$item->title}}</a></h5>
<ul class="post_details simple">
@if($item->program)
<li class="category">{{$item->program->name}}</li>

View File

@@ -6,7 +6,7 @@
<ul class="blog podcasts">
<li class="post">
<div class="post_content">
<h2><a href="{{url($program->url)}}" title="{{$program->name}}">{{$program->name}}</a></h2>
<h2><a href="{{route('programma') . $program->url}}" title="{{$program->name}}">{{$program->name}}</a></h2>
@if($program->tagline)
<p>{{$program->tagline}}</p>
@endif
@@ -30,7 +30,7 @@
@elseif(($loop->index >= 3) && $program->nonstop)
@break
@elseif(!$loop->first)
<li class="bullet style_2"><a href="{{url($program->url)}}" title="{{$program->name}}">
<li class="bullet style_2"><a href="{{route('programma') . $program->url}}" title="{{$program->name}}">
<b>{{$program->name}}</b></a> |
<span class="text-muted">{{Formatter::relativeDate($program->start)}} om {{$program->start->format('H:i')}}.</span>
</li>