im trying to add a new page to my nav bar i did that fine the first lines of my templet looks like this:
Code:
$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
$headinclude
<title>Site News</title>
</head>
<body>
$header
$navbar
but i dont get the link back to the forum home like the rest of the pages have. what am i missing?
and this is my php file i guess i can make it not a php file and direct it to a hook of some sort like one that uses misc.php?do=site_news or something
Code:
<?php
require_once('./global.php');
eval('print_output("' . fetch_template('site_news') . '");');
?>
is my php file.