Change logo Add luister and kijk icons Tip de streekredactie points to whatsapp 088-8505651 Add s to Podcast Removed waterschapsverkiezingen from menu Podcast autoplay disabled Remove Gooische Courant and NH Nieuws Changed NH Gooi to Over NH Gooi Added padding and border-radios to homepage posts Changed header 12px to 14px Add now and next programs to homepage Add new button to programs Changed contact text Add fallback image to program guide Make items height equally in program guide
61 lines
2.6 KiB
PHP
61 lines
2.6 KiB
PHP
@extends('layouts.master')
|
|
|
|
@section('title')
|
|
NH Gooi - Nieuws
|
|
@endsection
|
|
|
|
|
|
@section('content')
|
|
<div class="clearfix">
|
|
{{-- body --}}
|
|
<div class="grey_background">
|
|
<div class="body_container row">
|
|
<div class="col-12">
|
|
<div style="width: 100%; font-family: Nunito,serif;font-size: 12px;font-weight: 500;line-height: 3.17;text-align: center;color: #666;">
|
|
- Advertentie -
|
|
</div>
|
|
<div style="width: 728px; height: 90px;margin: 11px auto 50px auto;background-color: #efefef;"></div>
|
|
</div>
|
|
<div class="col-12 col-md content_container">
|
|
<div class="row">
|
|
<div class="col-md-12 col-12">
|
|
<h4 class="box_header"><span>Meer nieuws</span></h4>
|
|
<div class="box">
|
|
@include('partial/newslist_small', ['id' => 'items-more-news', 'news' => array_slice($news, 5, 5)])
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row mb-4">
|
|
<div class="col-12">
|
|
<a class="btn auto_width" id="meer-nieuws" href="#"
|
|
data-loadmorenews='{"container":["#items-more-news"]}'>
|
|
<span class="fas fa-spinner fa-spin" id="loading"></span>
|
|
Klik hier voor meer nieuws
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-12 col-md-auto sidebar">
|
|
@include('widgets/nhgooiradiotv', ['headerClass' => 'small'])
|
|
|
|
@include('widgets/contact', [])
|
|
|
|
<div style="width: 100%; font-family: Nunito,serif;font-size: 12px;font-weight: 500;line-height: 3.17;text-align: center;color: #666;">
|
|
- Advertentie -
|
|
</div>
|
|
<div style="width: 100%;height: 275px;margin: 11px auto 50px auto;background-color: #efefef;"></div>
|
|
|
|
<div class="podcast_items">
|
|
<h4 class="box_header small"><span>Fragment gemist</span></h4>
|
|
<div class="box">
|
|
@include('partial/podcastitems', ['showTime' => false, 'showImage' => false, 'podcasts' => $podcasts])
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|
|
|