File: D:/HostingSpaces/SBogers75/roost-interieurbouw.nl/app/views/layouts/pages/onlyText.blade.php
@extends('layouts.pages.page')
@section('content')
<div class="main-content row no-slider">
<section class="row text-row">
@if($data->partial == 'av')
@include('layouts.partials.av')
@endif
@if($data->partial == 'dc')
@include('layouts.partials.disclaimer')
@endif
@if($data->partial == 'privacy')
@include('layouts.partials.privacy')
@endif
</section>
<section class="row contact-row">
@include('layouts.partials.contact')
</section>
</div>
@endsection
@section('extraJS')
<script type="text/javascript">
$(function () {
$(".sub-header").hide();
enableScroll();
$('.logo').addClass('no-after-animations');
$('.top-bar').addClass('no-after-animations');
$('.yellow-bar').addClass('no-after-animations');
});
</script>
@endsection