<?php defined('SYSPATH') or die('No direct script access.');
/**
* Main home page for un-authenticated users
*
* @package lnApp
* @category Controllers
* @author Deon George
* @copyright (c) 2009-2013 Deon George
* @license http://dev.leenooks.net/license.html
*/
class Controller_Welcome extends lnApp_Controller_Welcome {
protected $auth_required = FALSE;
public function action_index() {
Style::factory()
->type('file')
->data('media/css/pages/welcome.css');
$this->template->content = View::factory('pages/welcome');
}
?>