dokladnie o to mi chodzi lecz niestety nie chodzi

Fatal error: Call to undefined function data()
i drugi bład:
Warning: Smarty error: unable to read resource: "index.tpl" in /home/smarty/smarty.class.php on line 1095
<?php
?>
kod mojej strony:
<?php
include 'smarty/smarty.class.php';
$index_title = ' ';
$index_slowa_kluczowe = ' ';
$index_opis_strony = ' ';
function data(){
}
$smarty = new Smarty;
$smarty -> assign('TYTUL', '$index_title');
$smarty -> assign('SLOWA_KLUCZOWE', $index_slowa_kluczowe);
$smarty -> assign('OPIS_STRONY', $index_opis_strony);
$smarty -> assign('DATA', data());
$smarty -> display('index.tpl');
?>