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