File: D:/HostingSpaces/SBogers10/ilysium.komma.pro/wwwroot/app/controllers/c_home.class.php
<?php
/**
* c_home.class.php
* Created by Komma Mediadesign.
* Author: mike
* Date: 11/02/14
*/
class Home extends Controller
{
public function __construct()
{
parent::__construct();
}
/*
* Index of the home page
*/
public function index()
{
// Title
$this->View->setData('page_title', SITE_NAME . ' | Sauna, Kuren, Massage, Wellness, Huidverzorging en Imago');
// Breadcrumb
$this->View->setData('breadcrumb', '/' );
// Load template view
$this->View->render('v_home');
}
}