kostache/classes/view/layout.php
2010-07-13 21:57:07 -05:00

15 lines
292 B
PHP

<?php defined('SYSPATH') or die('No direct script access.');
class View_Layout extends Kostache {
/**
* @var string template title
*/
public $title = 'Brought to you by KOstache!';
/**
* @var string template content
*/
public $content = 'Hello, world!';
} // End View_Template