File: D:/HostingSpaces/SBogers33/bbec.nl/app/views/layouts/pages/projects/index.blade.php
@extends('layouts.master')
@section('editable_content')
@include('layouts.partials.navigation')
<div class="projects-overview-content">
<div class="background">
<span class="left"></span>
<span class="right"></span>
</div>
<div class="grid-row">
@include('layouts.partials.projects.subMenu')
<div class="content">
@if(isset($page->content->main->typeName) && $page->content->main->typeName != '')
<h1>{{$page->content->main->typeName}}</h1>
@else
<h1>{{ $page->translation->name }}</h1>
@endif
{{ $page->content->main->description }}
<a class="button" href="{{$page->content->main->link}}">
{{$page->content->main->link_text}}
<span class="arrow">@include('svg.arrow')</span>
</a>
</div>
</div>
</div>
<section class="overview">
<div class="grid-row">
<div class="grid">
@foreach($projects as $project)
<article>
<a href="/{{$project->translation->route->route}}">
<figure>
<span class="image"
@if(isset($project->translation->projectDescription[0]->images[0]))
style="background-image: url('{{ $project->translation->projectDescription[0]->images[0]->medium_image_url }}');" @endif></span>
</figure>
<div class="content">
<h3>{{$project->translation->name}}</h3>
</div>
</a>
</article>
@endforeach
</div>
</div>
</section>
@endsection