HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/BDeurzen/vandeurzentuinontwerp.nl/app/views/layouts/pages/home.blade.php
@extends('layouts.master')

@section('streamer')
    <div class="streamer">
        <span class="bold">Groot</span> of <span class="bold">klein</span>,<br /> elke tuin een juweeltje
    </div>
@endsection

{{--
@section('editable_content')


    <p>hoi</p>
@endsection--}}

@section('editable_content')

    <div class="top-background">
        <div class="wrap-container">
            <div class="block intro offset-1">

                <div class="block intro-text-home">
                    @include('blocks/block', ['block'=>$blocks['home_intro']])
                    <a href="/over-ons" class="link">Lees meer over ons</a>
                </div>

                <div class="block home-contact">
                    @include('blocks/block', ['block'=>$blocks['contact_opnemen']])
                    <a href="/contact" class="cta-button special">Contact</a></div>
                </div>

            </div>
        </div>
    </div>

    <div class="bottom-background">
        <div class="wrap-container">
            <div class="features-container">
                <h2 class="features-title center">Ontdek de mogelijkheden</h2>
                    <div class="features grid8 offset-2">
                        <div class="feature"><a href="/over-ons"><img class="img-feature" src="img/features/visie.png" /><div class="feature-title">Over ons</div></a></div>
                        <div class="feature"><a href="/werkwijze"><img class="img-feature" src="img/features/ontwerpen.png" /><div class="feature-title">Werkwijze</div></a></div>
                        <div class="feature"><a href="/diensten"><img class="img-feature" src="img/features/diensten.png" /><div class="feature-title">Diensten</div></a></div>
                        <div class="feature"><a href="/projecten"><img class="img-feature" src="img/features/projecten.png" /><div class="feature-title">Projecten</div></a></div>
                    </div>
            </div>
        </div>
    </div>

@endsection

{{--@section('blocks')--}}
    {{--@foreach($blocks as $block)--}}
        {{--@include('blocks/block')--}}
    {{--@endforeach--}}
{{--@endsection--}}

@section('extra-js')
    <script>
        $(document).ready(function(){
            $('.feature').on('mouseenter', function(){
                $(this).find('.feature-title').addClass('highlighted-title');
            });
            $('.feature').on('mouseleave', function(){
                $(this).find('.feature-title').removeClass('highlighted-title');
            });
        });
    </script>
@endsection