ParseError
syntax error, unexpected 'endforeach' (T_ENDFOREACH), expecting elseif (T_ELSEIF) or else (T_ELSE) or endif (T_ENDIF) ParseError thrown with message "syntax error, unexpected 'endforeach' (T_ENDFOREACH), expecting elseif (T_ELSEIF) or else (T_ELSE) or endif (T_ENDIF)" Stacktrace: #6 ParseError in /home/ski2freedom/public_html/site/templates/news.php:37 #5 Tpl:load in /home/ski2freedom/public_html/kirby/kirby/component/template.php:103 #4 Kirby\Component\Template:render in /home/ski2freedom/public_html/kirby/kirby.php:681 #3 Kirby:template in /home/ski2freedom/public_html/kirby/kirby.php:669 #2 Kirby:render in /home/ski2freedom/public_html/kirby/kirby/component/response.php:29 #1 Kirby\Component\Response:make in /home/ski2freedom/public_html/kirby/kirby.php:751 #0 Kirby:launch in /home/ski2freedom/public_html/index.php:16
Stack frames (7)
6
ParseError
/
home
/
ski2freedom
/
public_html
/
site
/
templates
/
news.php
37
5
Tpl
load
/
kirby
/
component
/
template.php
103
4
Kirby
\
Component
\
Template
render
/
kirby.php
681
3
Kirby
template
/
kirby.php
669
2
Kirby
render
/
kirby
/
component
/
response.php
29
1
Kirby
\
Component
\
Response
make
/
kirby.php
751
0
Kirby
launch
/
home
/
ski2freedom
/
public_html
/
index.php
16
/
home
/
ski2freedom
/
public_html
/
site
/
templates
/
news.php
        <div id="newsItems">
        <h1>News</h1>
        <?php foreach($news as $newsitem): ?>
            <div class="news-item">
                <?php if ($newsitem->hasImages()) : $image = $newsitem->images()->first(); ?>
                      <div class="post-img">
                        <picture>
                            <!--[if IE 9]><video style="display: none;"><![endif]-->
                            <source srcset="<?php echo thumb($image, array('width' => 100, 'height' => 100, 'crop' => true, 'quality' => 40), false) ?>" media="(min-width: 800px)">
                            <source srcset="<?php echo thumb($image, array('width' => 100, 'height' => 100, 'crop' => true, 'quality' => 40), false) ?>" media="(min-width: 481px)">
                            <source srcset="<?php echo thumb($image, array('width' => 100, 'height' => 100, 'crop' => true, 'quality' => 40), false) ?>" media="(min-width: 320px)">
                            <!--[if IE 9]></video><![endif]-->
                            <img src="<?php echo thumb($image, array('width' => 100, 'height' => 100, 'crop' => true, 'quality' => 40), false) ?>" alt="">
                        </picture>
                    </div>
                <? endif ?>
                <h2><a href="<?php echo $newsitem->url() ?>"><?php echo html($newsitem->title()) ?></a></h2>
                <p><span class="date"><?php echo $newsitem->date('d / m / Y'); ?></span>&nbsp;|&nbsp;<?php echo excerpt($newsitem->text(), 200) ?></p>
            </div>
          <?php endforeach ?>
        </div>
 
        <?php else: ?>
        <?php $news = $page->children()->visible()->sortBy('date', 'desc'); ?>
            <div id="newsItems">
            <h1>News</h1>
            <?php foreach($news as $newsitem): ?>
                <div class="news-item">
                    <? if ($newsitem->hasImages()) : $image = $newsitem->images()->first(); ?>
                          <div class="post-img">
                            <picture>
                                <!--[if IE 9]><video style="display: none;"><![endif]-->
                                <source srcset="<?php echo thumb($image, array('width' => 100, 'height' => 100, 'crop' => true, 'quality' => 40), false) ?>" media="(min-width: 800px)">
                                <source srcset="<?php echo thumb($image, array('width' => 100, 'height' => 100, 'crop' => true, 'quality' => 40), false) ?>" media="(min-width: 481px)">
                                <source srcset="<?php echo thumb($image, array('width' => 100, 'height' => 100, 'crop' => true, 'quality' => 40), false) ?>" media="(min-width: 320px)">
                                <!--[if IE 9]></video><![endif]-->
                                <img src="<?php echo thumb($image, array('width' => 100, 'height' => 100, 'crop' => true, 'quality' => 40), false) ?>" alt="">
                            </picture>
                        </div>
                    <? endif ?>
/
home
/
ski2freedom
/
public_html
/
kirby
/
kirby
/
component
/
template.php
    if($template instanceof Page) {
      $page = $template;
      $file = $page->templateFile();
      $data = $this->data($page, $data);
    } else {
      $file = $template;
      $data = $this->data(null, $data);
    }
 
    // check for an existing template
    if(!file_exists($file)) {
      throw new Exception('The template could not be found');
    }
 
    // merge and register the template data globally
    $tplData = tpl::$data;
    tpl::$data = array_merge(tpl::$data, $data);
 
    // load the template
    $result = tpl::load($file, null, $return);
 
    // reset the template data
    tpl::$data = $tplData;
 
    return $result;
 
  }
 
}
 
/
home
/
ski2freedom
/
public_html
/
kirby
/
kirby.php
      }
 
      return $template;
 
    }
 
    // return a fresh template
    return $this->template($page, $data);
 
  }
 
  /**
   * Template configuration
   *
   * @param Page $page
   * @param array $data
   * @return string
   */
  public function template(Page $page, $data = array()) {
    return $this->component('template')->render($page, $data);
  }
 
  public function request() {
    if(!is_null($this->request)) return $this->request;
    return $this->request = new Request($this);
  }
 
  public function router() {
    return $this->router;
  }
 
  public function route() {
    return $this->route;
  }
 
  /**
   * Starts the router, renders the page and returns the response
   *
   * @return mixed
   */
/
home
/
ski2freedom
/
public_html
/
kirby
/
kirby.php
        }
 
      }
 
      // try to fetch the template from cache
      $template = $this->cache()->get($cacheId);
 
      // fetch fresh content if the cache is empty
      if(empty($template)) {
        $template = $this->template($page, $data);
        // store the result for the next round
        $this->cache()->set($cacheId, $template);
      }
 
      return $template;
 
    }
 
    // return a fresh template
    return $this->template($page, $data);
 
  }
 
  /**
   * Template configuration
   *
   * @param Page $page
   * @param array $data
   * @return string
   */
  public function template(Page $page, $data = array()) {
    return $this->component('template')->render($page, $data);
  }
 
  public function request() {
    if(!is_null($this->request)) return $this->request;
    return $this->request = new Request($this);
  }
 
  public function router() {
/
home
/
ski2freedom
/
public_html
/
kirby
/
kirby
/
component
/
response.php
 * @link      http://getkirby.com
 * @copyright Bastian Allgeier
 * @license   http://getkirby.com/license
 */
class Response extends \Kirby\Component {
 
  /**
   * Builds and return the response by various input
   * 
   * @param mixed $response
   * @return mixed
   */
  public function make($response) {
 
    if(is_string($response)) {
      return $this->kirby->render(page($response));
    } else if(is_array($response)) {
      return $this->kirby->render(page($response[0]), $response[1]);
    } else if(is_a($response, 'Page')) {
      return $this->kirby->render($response);      
    } else if(is_a($response, 'Response')) {
      return $response;
    } else {
      return null;
    }
 
  }
 
}
/
home
/
ski2freedom
/
public_html
/
kirby
/
kirby.php
    // check for a valid route
    if(is_null($this->route)) {
      header::status('500');
      header::type('json');
      die(json_encode(array(
        'status'  => 'error',
        'message' => 'Invalid route or request method'
      )));
    }
 
    // call the router action with all arguments from the pattern
    $response = call($this->route->action(), $this->route->arguments());
 
    // load all language variables
    // this can only be loaded once the router action has been called
    // otherwise the current language is not yet available
    $this->localize();
 
    // build the response
    $this->response = $this->component('response')->make($response);
 
    // store the current language in the session
    if(
        $this->option('language.detect') &&
        $this->site()->multilang() &&
        $this->site()->language()
      ) {
      s::set('kirby_language', $this->site()->language()->code());
    }
 
    return $this->response;
 
  }
 
  /**
   * Register a new hook
   *
   * @param string/array $hook The name of the hook
   * @param closure $callback
   */
/
home
/
ski2freedom
/
public_html
/
index.php
<?php
 
define('DS', DIRECTORY_SEPARATOR);
 
// load kirby
require(__DIR__ . DS . 'kirby' . DS . 'bootstrap.php');
 
// check for a custom site.php
if(file_exists(__DIR__ . DS . 'site.php')) {
  require(__DIR__ . DS . 'site.php');
} else {
  $kirby = kirby();
}
 
// render
echo $kirby->launch();

Environment & details:

Key Value
Kirby Toolkit v2.5.10
Kirby CMS v2.5.10
empty
empty
empty
empty
empty
Key Value
USER ski2freedom
HOME /home/ski2freedom
SCRIPT_NAME /index.php
REQUEST_URI /en/news
QUERY_STRING
REQUEST_METHOD GET
SERVER_PROTOCOL HTTP/2.0
GATEWAY_INTERFACE CGI/1.1
REDIRECT_URL /en/news
REMOTE_PORT 52196
SCRIPT_FILENAME /home/ski2freedom/public_html/index.php
SERVER_ADMIN root@localhost
CONTEXT_DOCUMENT_ROOT /home/ski2freedom/public_html
CONTEXT_PREFIX
REQUEST_SCHEME https
DOCUMENT_ROOT /home/ski2freedom/public_html
REMOTE_ADDR 3.235.199.19
SERVER_PORT 443
SERVER_ADDR 192.168.0.114
SERVER_NAME ski2freedom.com
SERVER_SOFTWARE Apache
SERVER_SIGNATURE
PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin
HTTP_HOST ski2freedom.com
HTTP_REFERER http://ski2freedom.com/en/news
HTTP_USER_AGENT claudebot
HTTP_ACCEPT */*
proxy-nokeepalive 1
H2_STREAM_TAG 000
H2_STREAM_ID
H2_PUSHED_ON
H2_PUSHED
H2_PUSH off
H2PUSH off
HTTP2 on
SSL_TLS_SNI ski2freedom.com
HTTPS on
UNIQUE_ID Zflkc8HDSnSR6jlUJ14xhwAAjAE
REDIRECT_STATUS 200
REDIRECT_H2_STREAM_TAG 000
REDIRECT_H2_STREAM_ID
REDIRECT_H2_PUSHED_ON
REDIRECT_H2_PUSHED
REDIRECT_H2_PUSH off
REDIRECT_H2PUSH off
REDIRECT_HTTP2 on
REDIRECT_SSL_TLS_SNI ski2freedom.com
REDIRECT_HTTPS on
REDIRECT_UNIQUE_ID Zflkc8HDSnSR6jlUJ14xhwAAjAE
FCGI_ROLE RESPONDER
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1710842995.7754
REQUEST_TIME 1710842995
empty
0. Whoops\Handler\PrettyPageHandler