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/SBogers10/rentman.komma.pro/app/views/layouts/pages/projectsOverview.blade.php
@extends('layouts.master')

@section('sky-content')
    <h1>{{$blocks->get('features_intro')->translation->name}}</h1>
    {{$blocks->get('features_intro')->translation->description}}
@endsection

@section('editable_content')

    @include('layouts.partials.skyRow', ['class' => 'full-text feature-intro'])

    <div class="landing-features">
        <div class="landing-features-nav">
            <div class="placeholder">
                <div class="wrapper">
                    @foreach($blocks as $block)
                        @if($block->view == 'landingsitem')
                            <p id="{{$block->code_name}}-nav"><a class="internalLink"
                                                                 href="#{{$block->code_name}}"><span>{{$block->translation->navigation_label}}</span></a>
                            </p>
                        @endif
                    @endforeach
                </div>
            </div>
        </div>

        @foreach($blocks as $block)
            @if($block->view == 'landingsitem')
                @include('layouts.partials.projects.landingspageItem')
            @endif
        @endforeach
    </div>

    @include('layouts.partials.projects.overviewFeatures')

    @include('layouts.partials.dataSecurityRow')
@endsection

@section('extra-js')
    <script type="text/javascript" src="/js/featureLanding.js?v=2"></script>
@endsection