2003-04-21 17:37:11 -04:00
|
|
|
<?php
|
2004-01-27 04:58:01 -05:00
|
|
|
$curpath = dirname(__FILE__).'/';
|
2003-04-21 17:37:11 -04:00
|
|
|
|
|
|
|
/***** About-the-blog tags *****/
|
2004-01-27 04:58:01 -05:00
|
|
|
require($curpath . 'template-functions-general.php');
|
2003-04-21 17:37:11 -04:00
|
|
|
|
2003-11-01 19:50:48 -05:00
|
|
|
/***** Links *****/
|
2004-01-27 04:58:01 -05:00
|
|
|
require($curpath . 'template-functions-links.php');
|
2003-04-21 17:37:11 -04:00
|
|
|
|
2003-08-05 18:44:38 -04:00
|
|
|
/**** // Geo Tags ****/
|
2004-01-27 04:58:01 -05:00
|
|
|
require($curpath . 'template-functions-geo.php');
|
2003-04-21 17:37:11 -04:00
|
|
|
|
|
|
|
/***** Author tags *****/
|
2004-01-27 04:58:01 -05:00
|
|
|
require($curpath . 'template-functions-author.php');
|
2003-04-21 17:37:11 -04:00
|
|
|
|
|
|
|
/***** Post tags *****/
|
2004-01-27 04:58:01 -05:00
|
|
|
require($curpath . 'template-functions-post.php');
|
2003-04-21 17:37:11 -04:00
|
|
|
|
|
|
|
/***** Category tags *****/
|
2004-01-27 04:58:01 -05:00
|
|
|
require($curpath . 'template-functions-category.php');
|
2003-04-21 17:37:11 -04:00
|
|
|
|
|
|
|
/***** Comment tags *****/
|
2004-01-27 04:58:01 -05:00
|
|
|
require($curpath . 'template-functions-comment.php');
|
2004-01-03 18:48:16 -05:00
|
|
|
|
|
|
|
?>
|