@forelse ($postDataCollection as $postData)
-
+
@empty
@include('blocks.FacetWP.partials.no-results')
@endforelse
diff --git a/stubs/resources/views/partials/content-single-knowledgebase.blade.php b/stubs/resources/views/partials/content-single-knowledgebase.blade.php
deleted file mode 100644
index a6ed9e6..0000000
--- a/stubs/resources/views/partials/content-single-knowledgebase.blade.php
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
{!! $postData->title() !!}
-
-{!! $postData->content() !!}
-
-
-
-@if ($postData->related()->isNotEmpty())
-
Bekijk ook
-
-
- @foreach ($postData->related() as $related)
-
- @endforeach
-
-
-@endif
diff --git a/stubs/resources/views/partials/content-single-news.blade.php b/stubs/resources/views/partials/content-single-news.blade.php
deleted file mode 100644
index 19e5d5d..0000000
--- a/stubs/resources/views/partials/content-single-news.blade.php
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
{!! $postData->title() !!}
-
-
-
- {{ $postData->date('j F Y') }}
-
-
-{!! $postData->content() !!}
-
-
-
-@if ($postData->related()->isNotEmpty())
-
{{ __('Het laatste nieuws', 'sage') }}
-
-
- @foreach ($postData->related() as $related)
-
- @endforeach
-
-
-@endif
diff --git a/stubs/resources/views/partials/content-single-person.blade.php b/stubs/resources/views/partials/content-single-person.blade.php
deleted file mode 100644
index 790aa7f..0000000
--- a/stubs/resources/views/partials/content-single-person.blade.php
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
{!! $postData->title() !!}
-
-
-
-{!! $postData->content() !!}
diff --git a/stubs/resources/views/partials/content-single-project.blade.php b/stubs/resources/views/partials/content-single-project.blade.php
deleted file mode 100644
index 9483eef..0000000
--- a/stubs/resources/views/partials/content-single-project.blade.php
+++ /dev/null
@@ -1,53 +0,0 @@
-
-
-
{!! $postData->title() !!}
-
-@if ($postData->isParent() || $postData->isChild() || $postData->isInformationPost)
-
-
- @if ($postData->isParent())
-
{{ __('Hoofdproject', 'sage') }}
-
- {{ __('Naar alle deelprojecten', 'sage') }}
-
-
- @endif
- @if ($postData->isChild() && !$postData->isInformationPost)
-
- @endif
- @if ($postData->isInformationPost)
-
- @endif
-
-@endif
-
-{!! $postData->content() !!}
-
-
-
-
-
-@if ($postData->isParent())
-
- {{ $postData->children()->count() > 1 ? __('Deelprojecten', 'sage') : __('Deelproject', 'sage') }}:
-
- @foreach ($postData->children() as $child)
-
- @endforeach
-
-@endif
-
-@if ($postData->related()->isNotEmpty())
-
{{ $postData->related()->count() > 1 ? __('Gerelateerde projecten', 'sage') : __('Gerelateerd project', 'sage') }}
-
- @foreach ($postData->related() as $related)
-
- @endforeach
-
-@endif
diff --git a/stubs/resources/views/partials/content-single-yard-event-schedule.blade.php b/stubs/resources/views/partials/content-single-yard-event-schedule.blade.php
deleted file mode 100644
index 993bd09..0000000
--- a/stubs/resources/views/partials/content-single-yard-event-schedule.blade.php
+++ /dev/null
@@ -1,13 +0,0 @@
-
- {!! $postData->title() !!}
-
-
-
{!! $postData->excerpt !!}
-
-
-
- @foreach ($postData->events() as $event)
-
- @endforeach
-
-
diff --git a/stubs/resources/views/partials/content-single-yard-event.blade.php b/stubs/resources/views/partials/content-single-yard-event.blade.php
deleted file mode 100644
index eed5022..0000000
--- a/stubs/resources/views/partials/content-single-yard-event.blade.php
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
{!! $postData->schedule()->title !!}
-@if ($postData->hasStarted())
-
- Deze activiteit is al begonnen.
-
-@endif
-@if ($postData->hasEnded())
-
- Deze activiteit heeft al plaatsgevonden.
-
-@endif
-
-{!! $postData->schedule()->content() !!}
-
-@if ($postData->related()->isNotEmpty())
-
{{ __('Bekijk ook deze evenementen','sage') }}
-
-
- @foreach ($postData->related() as $related)
-
- @endforeach
-
-
-@endif
diff --git a/stubs/resources/views/single-knowledgebase.blade.php b/stubs/resources/views/single-knowledgebase.blade.php
new file mode 100644
index 0000000..df9045e
--- /dev/null
+++ b/stubs/resources/views/single-knowledgebase.blade.php
@@ -0,0 +1,24 @@
+
+
+
+
+ {!! $postData->title() !!}
+
+ {!! $postData->content() !!}
+
+
+
+
+
+ @if ($postData->related()->isNotEmpty())
+ Bekijk ook
+
+
+ @foreach ($postData->related() as $related)
+
+ @endforeach
+
+
+ @endif
+
+
diff --git a/stubs/resources/views/single-news.blade.php b/stubs/resources/views/single-news.blade.php
new file mode 100644
index 0000000..3f107f0
--- /dev/null
+++ b/stubs/resources/views/single-news.blade.php
@@ -0,0 +1,29 @@
+
+
+
+
+ {!! $postData->title() !!}
+
+
+
+ {{ $postData->date('j F Y') }}
+
+
+ {!! $postData->content() !!}
+
+
+
+
+
+ @if ($postData->related()->isNotEmpty())
+ {{ __('Het laatste nieuws', 'sage') }}
+
+
+ @foreach ($postData->related() as $related)
+
+ @endforeach
+
+
+ @endif
+
+
diff --git a/stubs/resources/views/single-person.blade.php b/stubs/resources/views/single-person.blade.php
new file mode 100644
index 0000000..74ac082
--- /dev/null
+++ b/stubs/resources/views/single-person.blade.php
@@ -0,0 +1,11 @@
+
+
+
+
+ {!! $postData->title() !!}
+
+
+
+ {!! $postData->content() !!}
+
+
diff --git a/stubs/resources/views/single-project.blade.php b/stubs/resources/views/single-project.blade.php
new file mode 100644
index 0000000..a25253a
--- /dev/null
+++ b/stubs/resources/views/single-project.blade.php
@@ -0,0 +1,61 @@
+
+
+
+
+ {!! $postData->title() !!}
+
+ @if ($postData->isParent() || $postData->isChild() || $postData->isInformationPost)
+
+
+ @if ($postData->isParent())
+
{{ __('Hoofdproject', 'sage') }}
+
+ {{ __('Naar alle deelprojecten', 'sage') }}
+
+
+ @endif
+ @if ($postData->isChild() && !$postData->isInformationPost)
+
+ @endif
+ @if ($postData->isInformationPost)
+
+ @endif
+
+ @endif
+
+ {!! $postData->content() !!}
+
+
+
+
+
+
+
+ @if ($postData->isParent())
+
+ {{ $postData->children()->count() > 1 ? __('Deelprojecten', 'sage') : __('Deelproject', 'sage') }}:
+
+ @foreach ($postData->children() as $child)
+
+ @endforeach
+
+ @endif
+
+ @if ($postData->related()->isNotEmpty())
+
+ {{ $postData->related()->count() > 1 ? __('Gerelateerde projecten', 'sage') : __('Gerelateerd project', 'sage') }}
+
+
+ @foreach ($postData->related() as $related)
+
+ @endforeach
+
+ @endif
+
+
diff --git a/stubs/resources/views/single-yard-event-schedule.blade.php b/stubs/resources/views/single-yard-event-schedule.blade.php
new file mode 100644
index 0000000..91513ad
--- /dev/null
+++ b/stubs/resources/views/single-yard-event-schedule.blade.php
@@ -0,0 +1,13 @@
+
+
+
{!! $postData->title() !!}
+
+
{!! $postData->excerpt !!}
+
+
+ @foreach ($postData->events() as $event)
+
+ @endforeach
+
+
+
diff --git a/stubs/resources/views/single-yard-event.blade.php b/stubs/resources/views/single-yard-event.blade.php
new file mode 100644
index 0000000..5b85e40
--- /dev/null
+++ b/stubs/resources/views/single-yard-event.blade.php
@@ -0,0 +1,33 @@
+
+
+
+
+ {!! $postData->schedule()->title !!}
+
+ @if ($postData->hasStarted())
+
+ Deze activiteit is al begonnen.
+
+ @endif
+ @if ($postData->hasEnded())
+
+ Deze activiteit heeft al plaatsgevonden.
+
+ @endif
+
+ {!! $postData->schedule()->content() !!}
+
+
+
+ @if ($postData->related()->isNotEmpty())
+ {{ __('Bekijk ook deze evenementen', 'sage') }}
+
+
+ @foreach ($postData->related() as $related)
+
+ @endforeach
+
+
+ @endif
+
+
diff --git a/stubs/resources/views/vendor/wp-events/blocks/event-info.blade.php b/stubs/resources/views/vendor/wp-events/blocks/event-info.blade.php
index 5bc71f9..16280c5 100644
--- a/stubs/resources/views/vendor/wp-events/blocks/event-info.blade.php
+++ b/stubs/resources/views/vendor/wp-events/blocks/event-info.blade.php
@@ -4,10 +4,10 @@
@if (!($eventData instanceof EventData))
- {{ __('Momenteel kan er (nog) geen event informatie getoond worden.','sage') }}
+ {{ __('Momenteel kan er (nog) geen event informatie getoond worden.', 'sage') }}
@else
-