20 lines
416 B
PHP
20 lines
416 B
PHP
<?php # $Id$
|
|
|
|
if (IN_serendipity !== true) {
|
|
die ('Don\'t hack!');
|
|
}
|
|
|
|
if (!is_object($serendipity['smarty'])) {
|
|
serendipity_smarty_init();
|
|
}
|
|
|
|
$serendipity['smarty']->assign($data);
|
|
|
|
$tfile = dirname(__FILE__) . "/tpl/entries_overview.inc.tpl";
|
|
|
|
$content = $serendipity['smarty']->fetch('file:'. $tfile); // short notation with Smarty3 in S9y 1.7 and up
|
|
|
|
echo $content;
|
|
|
|
/* vim: set sts=4 ts=4 expandtab : */
|