Redirect op diepe audiolinks

This commit is contained in:
2021-02-17 09:41:38 +01:00
parent 529c08948a
commit 351ffe8709
2 changed files with 44 additions and 1 deletions

View File

@@ -0,0 +1,43 @@
@extends('layouts/full')
@php( $url = '/gemist/fragment' . $podcast->url )
@section('title')
{{$podcast->title}}
@endsection
@push('styles')
<meta http-equiv='refresh' content='5; URL={!!$url!!}.php'>
@endpush
@section('content')
@parent
<div class="row page_margin_top">
<div class="column column_2_3">
<div class="row">
<div class="post single small_image">
<h2>Directe link niet toegestaan - u wordt doorgestuurd</h2>
<div id='progress' style='background:red; height:5px;'></div>
<p>De link die u gevolgd heeft is niet geldig. Het direct linken naar audiofragmenten is niet toegestaan. <br/>
De juiste URL is: <a href="{!!$url!!}">https://nhgooi.nl/{!!$url!!}</a>. <br/>
Neem alstublieft contact op met de beheerder van de pagina waar u vandaan komt en vraag hen om de koppeling aan te passen. <br/>
U wordt binnen enkele seconden automatisch doorgestuurd naar de juiste pagina.
</div>
</div>
</div>
</div>
@endsection
@push('scripts')
<script>
$('#progress').animate({
width: '0px'
}, 5000);
window.setTimeout(function(){
window.location.href = "{!!$url!!}";
}, 5000);
</script>
@endpush