Illuminate\View\ViewException {#2513 #severity: E_ERROR }
if ( ! $image_src ) {
return $image;
}
// Bail early if an image has been inserted and later edited.
if ( preg_match( '/-e[0-9]{13}/', $image_meta['file'], $img_edit_hash )
&& ! str_contains( wp_basename( $image_src ), $img_edit_hash[0] )
) {
return $image;
}
// flush out any stray output that might get out before an error occurs or
// an exception is thrown. This prevents any partial views from leaking.
try {
$this->files->getRequire($path, $data);
} catch (Throwable $e) {
$this->handleViewException($e, $obLevel);
}
return ltrim(ob_get_clean());
}
// Once we have the path to the compiled file, we will evaluate the paths with
// typical PHP just like any other templates. We also keep a stack of views
// which have been rendered for right exception messages to be generated.
try {
$results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
} catch (ViewException $e) {
if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) {
throw $e;
}
*
* @return string
*/
protected function getContents()
{
return $this->engine->get($this->path, $this->gatherData());
}
/**
* Get the data bound to the view instance.
*
// clear out the sections for any separate views that may be rendered.
$this->factory->incrementRender();
$this->factory->callComposer($this);
$contents = $this->getContents();
// Once we've finished rendering the view, we'll decrement the render count
// so that each section gets flushed out next time a view is created and
// no old sections are staying around in the memory of an environment.
$this->factory->decrementRender();
* @throws \Throwable
*/
public function render(?callable $callback = null)
{
try {
$contents = $this->renderContents();
$response = isset($callback) ? $callback($this, $contents) : null;
// Once we have the contents of the view, we will flush the sections if we are
// done rendering all views so that there is nothing left hanging over when
<body <?php body_class(); ?>>
<?php wp_body_open(); ?>
<?php do_action('get_header'); ?>
<div id="app" class="flex flex-col min-h-screen">
<?php echo view(app('sage.view'), app('sage.data'))->render(); ?>
</div>
<?php do_action('get_footer'); ?>
<?php wp_footer(); ?>
*
* @param string $template The path of the template to include.
*/
$template = apply_filters( 'template_include', $template );
if ( $template ) {
include $template;
} elseif ( current_user_can( 'switch_themes' ) ) {
$theme = wp_get_theme();
if ( $theme->errors() ) {
wp_die( $theme->errors() );
}
// Set up the WordPress query.
wp();
// Load the theme template.
require_once ABSPATH . WPINC . '/template-loader.php';
}
<?php
/**
* WordPress View Bootstrapper
*/
define('WP_USE_THEMES', true);
require __DIR__ . '/wp/wp-blog-header.php';
if ( ! $image_src ) {
return $image;
}
// Bail early if an image has been inserted and later edited.
if ( preg_match( '/-e[0-9]{13}/', $image_meta['file'], $img_edit_hash )
&& ! str_contains( wp_basename( $image_src ), $img_edit_hash[0] )
) {
return $image;
}
* @throws \ErrorException
*/
public function handleError($level, $message, $file = '', $line = 0, $context = [])
{
try {
parent::handleError($level, $message, $file, $line, $context);
} catch (Throwable $e) {
if (! apply_filters('acorn/throw_error_exception', true, $e)) {
return false;
}
if ( ! $image_src ) {
return $image;
}
// Bail early if an image has been inserted and later edited.
if ( preg_match( '/-e[0-9]{13}/', $image_meta['file'], $img_edit_hash )
&& ! str_contains( wp_basename( $image_src ), $img_edit_hash[0] )
) {
return $image;
}
*/
$add = apply_filters( 'wp_img_tag_add_srcset_and_sizes_attr', true, $image, $context, $attachment_id );
if ( true === $add ) {
$image_meta = wp_get_attachment_metadata( $attachment_id );
return wp_image_add_srcset_and_sizes( $image, $image_meta, $attachment_id );
}
return $image;
}
$filtered_image = wp_img_tag_add_width_and_height_attr( $filtered_image, $context, $attachment_id );
}
// Add 'srcset' and 'sizes' attributes if applicable.
if ( $attachment_id > 0 && ! str_contains( $filtered_image, ' srcset=' ) ) {
$filtered_image = wp_img_tag_add_srcset_and_sizes_attr( $filtered_image, $context, $attachment_id );
}
// Add loading optimization attributes if applicable.
$filtered_image = wp_img_tag_add_loading_optimization_attrs( $filtered_image, $context );
// Avoid the array_slice() if possible.
if ( 0 === $the_['accepted_args'] ) {
$value = call_user_func( $the_['function'] );
} elseif ( $the_['accepted_args'] >= $num_args ) {
$value = call_user_func_array( $the_['function'], $args );
} else {
$value = call_user_func_array( $the_['function'], array_slice( $args, 0, $the_['accepted_args'] ) );
}
}
} while ( false !== next( $this->iterations[ $nesting_level ] ) );
}
// Pass the value to WP_Hook.
array_unshift( $args, $value );
$filtered = $wp_filter[ $hook_name ]->apply_filters( $value, $args );
array_pop( $wp_current_filter );
return $filtered;
}
*
* @since 0.71
*
* @param string $content Content of the current post.
*/
$content = apply_filters( 'the_content', $content );
$content = str_replace( ']]>', ']]>', $content );
echo $content;
}
/**
<?php while(have_posts()): ?> <?php (the_post()); ?>
<?php echo $__env->first(['partials.page-header-' . get_post_type(), 'partials.page-header'], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<div class="prose gutenberg max-w-none mt-6 lg:mt-12 mb-24">
<?php echo the_content(); ?>
</div>
<?php if($related_posts->have_posts()): ?>
<div class="my-12 lg:my-24">
$__data = $data;
return (static function () use ($__path, $__data) {
extract($__data, EXTR_SKIP);
return require $__path;
})();
}
throw new FileNotFoundException("File does not exist at path {$path}.");
}
return (static function () use ($__path, $__data) {
extract($__data, EXTR_SKIP);
return require $__path;
})();
}
throw new FileNotFoundException("File does not exist at path {$path}.");
}
// We'll evaluate the contents of the view inside a try/catch block so we can
// flush out any stray output that might get out before an error occurs or
// an exception is thrown. This prevents any partial views from leaking.
try {
$this->files->getRequire($path, $data);
} catch (Throwable $e) {
$this->handleViewException($e, $obLevel);
}
return ltrim(ob_get_clean());
// Once we have the path to the compiled file, we will evaluate the paths with
// typical PHP just like any other templates. We also keep a stack of views
// which have been rendered for right exception messages to be generated.
try {
$results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
} catch (ViewException $e) {
if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) {
throw $e;
}
*
* @return string
*/
protected function getContents()
{
return $this->engine->get($this->path, $this->gatherData());
}
/**
* Get the data bound to the view instance.
*
// clear out the sections for any separate views that may be rendered.
$this->factory->incrementRender();
$this->factory->callComposer($this);
$contents = $this->getContents();
// Once we've finished rendering the view, we'll decrement the render count
// so that each section gets flushed out next time a view is created and
// no old sections are staying around in the memory of an environment.
$this->factory->decrementRender();
* @throws \Throwable
*/
public function render(?callable $callback = null)
{
try {
$contents = $this->renderContents();
$response = isset($callback) ? $callback($this, $contents) : null;
// Once we have the contents of the view, we will flush the sections if we are
// done rendering all views so that there is nothing left hanging over when
<body <?php body_class(); ?>>
<?php wp_body_open(); ?>
<?php do_action('get_header'); ?>
<div id="app" class="flex flex-col min-h-screen">
<?php echo view(app('sage.view'), app('sage.data'))->render(); ?>
</div>
<?php do_action('get_footer'); ?>
<?php wp_footer(); ?>
*
* @param string $template The path of the template to include.
*/
$template = apply_filters( 'template_include', $template );
if ( $template ) {
include $template;
} elseif ( current_user_can( 'switch_themes' ) ) {
$theme = wp_get_theme();
if ( $theme->errors() ) {
wp_die( $theme->errors() );
}
// Set up the WordPress query.
wp();
// Load the theme template.
require_once ABSPATH . WPINC . '/template-loader.php';
}
<?php
/**
* WordPress View Bootstrapper
*/
define('WP_USE_THEMES', true);
require __DIR__ . '/wp/wp-blog-header.php';
[2/2]
ViewException
|
---|
Illuminate\View\ViewException: Undefined array key "file" (View: /home/clients/36c49b0f349e214b58b6caaae1898e26/fisu-events.com/releases/26/web/app/themes/sage/resources/views/singular.blade.php) at /home/clients/36c49b0f349e214b58b6caaae1898e26/fisu-events.com/releases/26/web/wp/wp-includes/media.php:1768 at Illuminate\View\Engines\CompilerEngine->handleViewException(object(ErrorException), 1) (/home/clients/36c49b0f349e214b58b6caaae1898e26/fisu-events.com/releases/26/vendor/illuminate/view/Engines/PhpEngine.php:60) at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/clients/36c49b0f349e214b58b6caaae1898e26/fisu-events.com/releases/26/web/app/cache/acorn/framework/views/bf72b41810855646af75b2943497f7c5.php', array('__env' => object(Factory), 'app' => object(Application), 'post' => object(WP_Post), 'title' => 'Route 1: Time Table Shuttle Bus Service', 'category' => false, 'date' => array('full' => '26 June 2024', 'mini' => '26 Jun'), 'thumbnail' => false, 'related_posts' => object(WP_Query), 'thumbnail_alt' => false, 'siteName' => 'FISU WUC Rowing 2024 – Rotterdam', 'location' => 'Rotterdam, The Netherlands', 'siteTimezone' => object(DateTimeZone), 'dates' => '03 July - 06 July', 'isUpcoming' => false, 'isPast' => true, 'isOngoing' => false)) (/home/clients/36c49b0f349e214b58b6caaae1898e26/fisu-events.com/releases/26/vendor/illuminate/view/Engines/CompilerEngine.php:72) at Illuminate\View\Engines\CompilerEngine->get('/home/clients/36c49b0f349e214b58b6caaae1898e26/fisu-events.com/releases/26/web/app/themes/sage/resources/views/singular.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'post' => object(WP_Post), 'title' => 'Route 1: Time Table Shuttle Bus Service', 'category' => false, 'date' => array('full' => '26 June 2024', 'mini' => '26 Jun'), 'thumbnail' => false, 'related_posts' => object(WP_Query), 'thumbnail_alt' => false, 'siteName' => 'FISU WUC Rowing 2024 – Rotterdam', 'location' => 'Rotterdam, The Netherlands', 'siteTimezone' => object(DateTimeZone), 'dates' => '03 July - 06 July', 'isUpcoming' => false, 'isPast' => true, 'isOngoing' => false)) (/home/clients/36c49b0f349e214b58b6caaae1898e26/fisu-events.com/releases/26/vendor/illuminate/view/View.php:207) at Illuminate\View\View->getContents() (/home/clients/36c49b0f349e214b58b6caaae1898e26/fisu-events.com/releases/26/vendor/illuminate/view/View.php:190) at Illuminate\View\View->renderContents() (/home/clients/36c49b0f349e214b58b6caaae1898e26/fisu-events.com/releases/26/vendor/illuminate/view/View.php:159) at Illuminate\View\View->render() (/home/clients/36c49b0f349e214b58b6caaae1898e26/fisu-events.com/releases/26/web/app/themes/sage/index.php:14) at include('/home/clients/36c49b0f349e214b58b6caaae1898e26/fisu-events.com/releases/26/web/app/themes/sage/index.php') (/home/clients/36c49b0f349e214b58b6caaae1898e26/fisu-events.com/releases/26/web/wp/wp-includes/template-loader.php:106) at require_once('/home/clients/36c49b0f349e214b58b6caaae1898e26/fisu-events.com/releases/26/web/wp/wp-includes/template-loader.php') (/home/clients/36c49b0f349e214b58b6caaae1898e26/fisu-events.com/releases/26/web/wp/wp-blog-header.php:19) at require('/home/clients/36c49b0f349e214b58b6caaae1898e26/fisu-events.com/releases/26/web/wp/wp-blog-header.php') (/home/clients/36c49b0f349e214b58b6caaae1898e26/fisu-events.com/releases/26/web/index.php:6) |
[1/2]
ErrorException
|
---|
ErrorException: Undefined array key "file" at /home/clients/36c49b0f349e214b58b6caaae1898e26/fisu-events.com/releases/26/web/wp/wp-includes/media.php:1768 at Illuminate\Foundation\Bootstrap\HandleExceptions->handleError(2, 'Undefined array key "file"', '/home/clients/36c49b0f349e214b58b6caaae1898e26/fisu-events.com/releases/26/web/wp/wp-includes/media.php', 1768, array()) (/home/clients/36c49b0f349e214b58b6caaae1898e26/fisu-events.com/releases/26/vendor/roots/acorn/src/Roots/Acorn/Bootstrap/HandleExceptions.php:49) at Roots\Acorn\Bootstrap\HandleExceptions->handleError(2, 'Undefined array key "file"', '/home/clients/36c49b0f349e214b58b6caaae1898e26/fisu-events.com/releases/26/web/wp/wp-includes/media.php', 1768) (/home/clients/36c49b0f349e214b58b6caaae1898e26/fisu-events.com/releases/26/web/wp/wp-includes/media.php:1768) at wp_image_add_srcset_and_sizes('<img width="1024" height="768" src="https://fisu-events.com/app/uploads/sites/16/2024/06/Bus-stop-Campanile-Gouda-1-pdf-1024x768.jpg" alt="" class="wp-image-395" />', array('sizes' => array('full' => array('file' => 'Bus-stop-Campanile-Gouda-1-pdf.jpg', 'width' => 1280, 'height' => 960, 'mime-type' => 'image/jpeg', 'filesize' => 165022), 'medium' => array('file' => 'Bus-stop-Campanile-Gouda-1-pdf-300x225.jpg', 'width' => 300, 'height' => 225, 'mime-type' => 'image/jpeg', 'filesize' => 21941), 'large' => array('file' => 'Bus-stop-Campanile-Gouda-1-pdf-1024x768.jpg', 'width' => 1024, 'height' => 768, 'mime-type' => 'image/jpeg', 'filesize' => 117716), 'thumbnail' => array('file' => 'Bus-stop-Campanile-Gouda-1-pdf-150x113.jpg', 'width' => 150, 'height' => 113, 'mime-type' => 'image/jpeg', 'filesize' => 8912)), 'filesize' => 394289), 395) (/home/clients/36c49b0f349e214b58b6caaae1898e26/fisu-events.com/releases/26/web/wp/wp-includes/media.php:2309) at wp_img_tag_add_srcset_and_sizes_attr('<img width="1024" height="768" src="https://fisu-events.com/app/uploads/sites/16/2024/06/Bus-stop-Campanile-Gouda-1-pdf-1024x768.jpg" alt="" class="wp-image-395" />', 'the_content', 395) (/home/clients/36c49b0f349e214b58b6caaae1898e26/fisu-events.com/releases/26/web/wp/wp-includes/media.php:1933) at wp_filter_content_tags('<p>Please find below the time table for Route 1, which includes the following hotel:<br>– Hotel Campanile Gouda</p><p><strong>Important: </strong>for the first two busses on saturday, we give priority for the crews and coaches that are rowing their A/B finals. This is shown in the time table below. If you would like to take another bus than the one that has your event name, please send an e-mail to <a href="mailto:logistics@wucrowing2024.com">logistics@wucrowing2024.com</a> or message the info number. There will be someone checking accreditation at the bus. Other people will only be able to enter the busses if there is enough space left.<br><br><em>The time table could be subject to change due to unforeseen circumstances. Please check this page regularly.</em><br><em><strong><em><strong>Last updated: 5th of July 2024 21:10</strong></em></strong></em></p><p><strong>Saturday July 6th</strong><br><br></p><figure class="wp-block-table"><table><thead><tr><th></th><th>Hotel Campanile Gouda</th><th>Venue</th><th>Venue</th><th>Hotel Campanile Gouda</th></tr></thead><tbody><tr><td>Priority for the following crews rowing their A/B finals: <br>Mix4x, M2-, M1x, W4-, W1x, W2-, W2x, M4-, LM1x, LM2x</td><td>06:15 </td><td>06:45</td><td>06:45</td><td>07:15</td></tr><tr><td>Priority for the following crews rowing their A finals:<br>W8+, M2x, M8+, LW1x, LW2x</td><td>07:15</td><td>07:45</td><td>07:45</td><td>08:15</td></tr><tr><td></td><td>08:15</td><td>08:45</td><td>09:15</td><td>09:45</td></tr><tr><td></td><td>09:45</td><td>10:15</td><td>10:15</td><td>10:45</td></tr><tr><td></td><td>10:45</td><td>11:15</td><td>11:15</td><td>11:45</td></tr><tr><td></td><td>11:45</td><td>12:15</td><td></td><td></td></tr><tr><td></td><td></td><td></td><td>16:30*</td><td>17:00</td></tr><tr><td></td><td></td><td></td><td>18:30</td><td>19:00</td></tr><tr><td></td><td>19:00</td><td>19:30</td><td>20:00</td><td>20:30</td></tr></tbody></table><figcaption class="wp-element-caption">* Registration is needed for this bus and spaces will be based on first come, first serve</figcaption></figure><h2 class="wp-block-heading"><strong>Location of bus stop</strong></h2><figure class="wp-block-image size-large"><a href="https://fisu-events.com/app/uploads/sites/16/2024/06/Bus-stop-Campanile-Gouda-1.pdf"><img src="https://fisu-events.com/app/uploads/sites/16/2024/06/Bus-stop-Campanile-Gouda-1-pdf-1024x768.jpg" alt="" class="wp-image-395" /></a><figcaption class="wp-element-caption">Bus stop Campanile Gouda</figcaption></figure>') (/home/clients/36c49b0f349e214b58b6caaae1898e26/fisu-events.com/releases/26/web/wp/wp-includes/class-wp-hook.php:324) at WP_Hook->apply_filters('<p>Please find below the time table for Route 1, which includes the following hotel:<br>– Hotel Campanile Gouda</p><p><strong>Important: </strong>for the first two busses on saturday, we give priority for the crews and coaches that are rowing their A/B finals. This is shown in the time table below. If you would like to take another bus than the one that has your event name, please send an e-mail to <a href="mailto:logistics@wucrowing2024.com">logistics@wucrowing2024.com</a> or message the info number. There will be someone checking accreditation at the bus. Other people will only be able to enter the busses if there is enough space left.<br><br><em>The time table could be subject to change due to unforeseen circumstances. Please check this page regularly.</em><br><em><strong><em><strong>Last updated: 5th of July 2024 21:10</strong></em></strong></em></p><p><strong>Saturday July 6th</strong><br><br></p><figure class="wp-block-table"><table><thead><tr><th></th><th>Hotel Campanile Gouda</th><th>Venue</th><th>Venue</th><th>Hotel Campanile Gouda</th></tr></thead><tbody><tr><td>Priority for the following crews rowing their A/B finals: <br>Mix4x, M2-, M1x, W4-, W1x, W2-, W2x, M4-, LM1x, LM2x</td><td>06:15 </td><td>06:45</td><td>06:45</td><td>07:15</td></tr><tr><td>Priority for the following crews rowing their A finals:<br>W8+, M2x, M8+, LW1x, LW2x</td><td>07:15</td><td>07:45</td><td>07:45</td><td>08:15</td></tr><tr><td></td><td>08:15</td><td>08:45</td><td>09:15</td><td>09:45</td></tr><tr><td></td><td>09:45</td><td>10:15</td><td>10:15</td><td>10:45</td></tr><tr><td></td><td>10:45</td><td>11:15</td><td>11:15</td><td>11:45</td></tr><tr><td></td><td>11:45</td><td>12:15</td><td></td><td></td></tr><tr><td></td><td></td><td></td><td>16:30*</td><td>17:00</td></tr><tr><td></td><td></td><td></td><td>18:30</td><td>19:00</td></tr><tr><td></td><td>19:00</td><td>19:30</td><td>20:00</td><td>20:30</td></tr></tbody></table><figcaption class="wp-element-caption">* Registration is needed for this bus and spaces will be based on first come, first serve</figcaption></figure><h2 class="wp-block-heading"><strong>Location of bus stop</strong></h2><figure class="wp-block-image size-large"><a href="https://fisu-events.com/app/uploads/sites/16/2024/06/Bus-stop-Campanile-Gouda-1.pdf"><img src="https://fisu-events.com/app/uploads/sites/16/2024/06/Bus-stop-Campanile-Gouda-1-pdf-1024x768.jpg" alt="" class="wp-image-395" /></a><figcaption class="wp-element-caption">Bus stop Campanile Gouda</figcaption></figure>', array('<p>Please find below the time table for Route 1, which includes the following hotel:<br>– Hotel Campanile Gouda</p><p><strong>Important: </strong>for the first two busses on saturday, we give priority for the crews and coaches that are rowing their A/B finals. This is shown in the time table below. If you would like to take another bus than the one that has your event name, please send an e-mail to <a href="mailto:logistics@wucrowing2024.com">logistics@wucrowing2024.com</a> or message the info number. There will be someone checking accreditation at the bus. Other people will only be able to enter the busses if there is enough space left.<br><br><em>The time table could be subject to change due to unforeseen circumstances. Please check this page regularly.</em><br><em><strong><em><strong>Last updated: 5th of July 2024 21:10</strong></em></strong></em></p><p><strong>Saturday July 6th</strong><br><br></p><figure class="wp-block-table"><table><thead><tr><th></th><th>Hotel Campanile Gouda</th><th>Venue</th><th>Venue</th><th>Hotel Campanile Gouda</th></tr></thead><tbody><tr><td>Priority for the following crews rowing their A/B finals: <br>Mix4x, M2-, M1x, W4-, W1x, W2-, W2x, M4-, LM1x, LM2x</td><td>06:15 </td><td>06:45</td><td>06:45</td><td>07:15</td></tr><tr><td>Priority for the following crews rowing their A finals:<br>W8+, M2x, M8+, LW1x, LW2x</td><td>07:15</td><td>07:45</td><td>07:45</td><td>08:15</td></tr><tr><td></td><td>08:15</td><td>08:45</td><td>09:15</td><td>09:45</td></tr><tr><td></td><td>09:45</td><td>10:15</td><td>10:15</td><td>10:45</td></tr><tr><td></td><td>10:45</td><td>11:15</td><td>11:15</td><td>11:45</td></tr><tr><td></td><td>11:45</td><td>12:15</td><td></td><td></td></tr><tr><td></td><td></td><td></td><td>16:30*</td><td>17:00</td></tr><tr><td></td><td></td><td></td><td>18:30</td><td>19:00</td></tr><tr><td></td><td>19:00</td><td>19:30</td><td>20:00</td><td>20:30</td></tr></tbody></table><figcaption class="wp-element-caption">* Registration is needed for this bus and spaces will be based on first come, first serve</figcaption></figure><h2 class="wp-block-heading"><strong>Location of bus stop</strong></h2><figure class="wp-block-image size-large"><a href="https://fisu-events.com/app/uploads/sites/16/2024/06/Bus-stop-Campanile-Gouda-1.pdf"><img src="https://fisu-events.com/app/uploads/sites/16/2024/06/Bus-stop-Campanile-Gouda-1-pdf-1024x768.jpg" alt="" class="wp-image-395" /></a><figcaption class="wp-element-caption">Bus stop Campanile Gouda</figcaption></figure>')) (/home/clients/36c49b0f349e214b58b6caaae1898e26/fisu-events.com/releases/26/web/wp/wp-includes/plugin.php:205) at apply_filters('the_content', '<!-- wp:paragraph --><p>Please find below the time table for Route 1, which includes the following hotel:<br>- Hotel Campanile Gouda</p><!-- /wp:paragraph --><!-- wp:paragraph --><p><strong>Important: </strong>for the first two busses on saturday, we give priority for the crews and coaches that are rowing their A/B finals. This is shown in the time table below. If you would like to take another bus than the one that has your event name, please send an e-mail to <a href="mailto:logistics@wucrowing2024.com">logistics@wucrowing2024.com</a> or message the info number. There will be someone checking accreditation at the bus. Other people will only be able to enter the busses if there is enough space left.<br><br><em>The time table could be subject to change due to unforeseen circumstances. Please check this page regularly.</em><br><em><strong><em><strong>Last updated: 5th of July 2024 21:10</strong></em></strong></em></p><!-- /wp:paragraph --><!-- wp:paragraph --><p><strong>Saturday July 6th</strong><br><br></p><!-- /wp:paragraph --><!-- wp:table --><figure class="wp-block-table"><table><thead><tr><th></th><th>Hotel Campanile Gouda</th><th>Venue</th><th>Venue</th><th>Hotel Campanile Gouda</th></tr></thead><tbody><tr><td>Priority for the following crews rowing their A/B finals: <br>Mix4x, M2-, M1x, W4-, W1x, W2-, W2x, M4-, LM1x, LM2x</td><td>06:15 </td><td>06:45</td><td>06:45</td><td>07:15</td></tr><tr><td>Priority for the following crews rowing their A finals:<br>W8+, M2x, M8+, LW1x, LW2x</td><td>07:15</td><td>07:45</td><td>07:45</td><td>08:15</td></tr><tr><td></td><td>08:15</td><td>08:45</td><td>09:15</td><td>09:45</td></tr><tr><td></td><td>09:45</td><td>10:15</td><td>10:15</td><td>10:45</td></tr><tr><td></td><td>10:45</td><td>11:15</td><td>11:15</td><td>11:45</td></tr><tr><td></td><td>11:45</td><td>12:15</td><td></td><td></td></tr><tr><td></td><td></td><td></td><td>16:30*</td><td>17:00</td></tr><tr><td></td><td></td><td></td><td>18:30</td><td>19:00</td></tr><tr><td></td><td>19:00</td><td>19:30</td><td>20:00</td><td>20:30</td></tr></tbody></table><figcaption class="wp-element-caption">* Registration is needed for this bus and spaces will be based on first come, first serve</figcaption></figure><!-- /wp:table --><!-- wp:heading --><h2 class="wp-block-heading"><strong>Location of bus stop</strong></h2><!-- /wp:heading --><!-- wp:image {"id":395,"sizeSlug":"large","linkDestination":"media"} --><figure class="wp-block-image size-large"><a href="https://fisu-events.com/app/uploads/sites/16/2024/06/Bus-stop-Campanile-Gouda-1.pdf"><img src="https://fisu-events.com/app/uploads/sites/16/2024/06/Bus-stop-Campanile-Gouda-1-pdf-1024x768.jpg" alt="" class="wp-image-395" /></a><figcaption class="wp-element-caption">Bus stop Campanile Gouda</figcaption></figure><!-- /wp:image -->') (/home/clients/36c49b0f349e214b58b6caaae1898e26/fisu-events.com/releases/26/web/wp/wp-includes/post-template.php:256) at the_content() (/home/clients/36c49b0f349e214b58b6caaae1898e26/fisu-events.com/releases/26/web/app/cache/acorn/framework/views/bf72b41810855646af75b2943497f7c5.php:18) at require('/home/clients/36c49b0f349e214b58b6caaae1898e26/fisu-events.com/releases/26/web/app/cache/acorn/framework/views/bf72b41810855646af75b2943497f7c5.php') (/home/clients/36c49b0f349e214b58b6caaae1898e26/fisu-events.com/releases/26/vendor/illuminate/filesystem/Filesystem.php:123) at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}() (/home/clients/36c49b0f349e214b58b6caaae1898e26/fisu-events.com/releases/26/vendor/illuminate/filesystem/Filesystem.php:124) at Illuminate\Filesystem\Filesystem->getRequire('/home/clients/36c49b0f349e214b58b6caaae1898e26/fisu-events.com/releases/26/web/app/cache/acorn/framework/views/bf72b41810855646af75b2943497f7c5.php', array('__env' => object(Factory), 'app' => object(Application), 'post' => object(WP_Post), 'title' => 'Route 1: Time Table Shuttle Bus Service', 'category' => false, 'date' => array('full' => '26 June 2024', 'mini' => '26 Jun'), 'thumbnail' => false, 'related_posts' => object(WP_Query), 'thumbnail_alt' => false, 'siteName' => 'FISU WUC Rowing 2024 – Rotterdam', 'location' => 'Rotterdam, The Netherlands', 'siteTimezone' => object(DateTimeZone), 'dates' => '03 July - 06 July', 'isUpcoming' => false, 'isPast' => true, 'isOngoing' => false)) (/home/clients/36c49b0f349e214b58b6caaae1898e26/fisu-events.com/releases/26/vendor/illuminate/view/Engines/PhpEngine.php:58) at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/clients/36c49b0f349e214b58b6caaae1898e26/fisu-events.com/releases/26/web/app/cache/acorn/framework/views/bf72b41810855646af75b2943497f7c5.php', array('__env' => object(Factory), 'app' => object(Application), 'post' => object(WP_Post), 'title' => 'Route 1: Time Table Shuttle Bus Service', 'category' => false, 'date' => array('full' => '26 June 2024', 'mini' => '26 Jun'), 'thumbnail' => false, 'related_posts' => object(WP_Query), 'thumbnail_alt' => false, 'siteName' => 'FISU WUC Rowing 2024 – Rotterdam', 'location' => 'Rotterdam, The Netherlands', 'siteTimezone' => object(DateTimeZone), 'dates' => '03 July - 06 July', 'isUpcoming' => false, 'isPast' => true, 'isOngoing' => false)) (/home/clients/36c49b0f349e214b58b6caaae1898e26/fisu-events.com/releases/26/vendor/illuminate/view/Engines/CompilerEngine.php:72) at Illuminate\View\Engines\CompilerEngine->get('/home/clients/36c49b0f349e214b58b6caaae1898e26/fisu-events.com/releases/26/web/app/themes/sage/resources/views/singular.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'post' => object(WP_Post), 'title' => 'Route 1: Time Table Shuttle Bus Service', 'category' => false, 'date' => array('full' => '26 June 2024', 'mini' => '26 Jun'), 'thumbnail' => false, 'related_posts' => object(WP_Query), 'thumbnail_alt' => false, 'siteName' => 'FISU WUC Rowing 2024 – Rotterdam', 'location' => 'Rotterdam, The Netherlands', 'siteTimezone' => object(DateTimeZone), 'dates' => '03 July - 06 July', 'isUpcoming' => false, 'isPast' => true, 'isOngoing' => false)) (/home/clients/36c49b0f349e214b58b6caaae1898e26/fisu-events.com/releases/26/vendor/illuminate/view/View.php:207) at Illuminate\View\View->getContents() (/home/clients/36c49b0f349e214b58b6caaae1898e26/fisu-events.com/releases/26/vendor/illuminate/view/View.php:190) at Illuminate\View\View->renderContents() (/home/clients/36c49b0f349e214b58b6caaae1898e26/fisu-events.com/releases/26/vendor/illuminate/view/View.php:159) at Illuminate\View\View->render() (/home/clients/36c49b0f349e214b58b6caaae1898e26/fisu-events.com/releases/26/web/app/themes/sage/index.php:14) at include('/home/clients/36c49b0f349e214b58b6caaae1898e26/fisu-events.com/releases/26/web/app/themes/sage/index.php') (/home/clients/36c49b0f349e214b58b6caaae1898e26/fisu-events.com/releases/26/web/wp/wp-includes/template-loader.php:106) at require_once('/home/clients/36c49b0f349e214b58b6caaae1898e26/fisu-events.com/releases/26/web/wp/wp-includes/template-loader.php') (/home/clients/36c49b0f349e214b58b6caaae1898e26/fisu-events.com/releases/26/web/wp/wp-blog-header.php:19) at require('/home/clients/36c49b0f349e214b58b6caaae1898e26/fisu-events.com/releases/26/web/wp/wp-blog-header.php') (/home/clients/36c49b0f349e214b58b6caaae1898e26/fisu-events.com/releases/26/web/index.php:6) |