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