2003-04-21 21:37:11 +00:00
|
|
|
<?php
|
2004-01-27 09:58:01 +00:00
|
|
|
$curpath = dirname(__FILE__).'/';
|
2003-04-21 21:37:11 +00:00
|
|
|
|
|
|
|
/***** About-the-blog tags *****/
|
2004-01-27 09:58:01 +00:00
|
|
|
require($curpath . 'template-functions-general.php');
|
2003-04-21 21:37:11 +00:00
|
|
|
|
2003-11-02 00:50:48 +00:00
|
|
|
/***** Links *****/
|
2004-01-27 09:58:01 +00:00
|
|
|
require($curpath . 'template-functions-links.php');
|
2003-04-21 21:37:11 +00:00
|
|
|
|
|
|
|
/***** Author tags *****/
|
2004-01-27 09:58:01 +00:00
|
|
|
require($curpath . 'template-functions-author.php');
|
2003-04-21 21:37:11 +00:00
|
|
|
|
|
|
|
/***** Post tags *****/
|
2004-01-27 09:58:01 +00:00
|
|
|
require($curpath . 'template-functions-post.php');
|
2003-04-21 21:37:11 +00:00
|
|
|
|
|
|
|
/***** Category tags *****/
|
2004-01-27 09:58:01 +00:00
|
|
|
require($curpath . 'template-functions-category.php');
|
2003-04-21 21:37:11 +00:00
|
|
|
|
|
|
|
/***** Comment tags *****/
|
2004-12-16 23:18:15 +00:00
|
|
|
require($curpath . 'comment-functions.php');
|
2004-01-03 23:48:16 +00:00
|
|
|
|
|
|
|
?>
|