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
|
|
|
|
2003-08-06 00:44:38 +02:00
|
|
|
/**** // Geo Tags ****/
|
2004-01-27 10:58:01 +01:00
|
|
|
require($curpath . 'template-functions-geo.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-01-27 10:58:01 +01:00
|
|
|
require($curpath . 'template-functions-comment.php');
|
2004-01-04 00:48:16 +01:00
|
|
|
|
|
|
|
?>
|