What you can do is use php (or another server side language such as asp) to include your link files.
So, your pages would look something like this:
PHP Code:
<html> <head> <title>My Page</title> <!-- Other Head tags and css stuff -> </head> <body> <div id="sideBar"> <?php include('links.php'); ?> </div> <div id="content"> <!-- Your page content right here --> </div> </body> </html>
And your links.php page might look like this:
HTML Code:
<ul>
<li><a href="link1.html">Some link</a></li>
<li><a href="link1.html">Some link</a></li>
<li><a href="link1.html">Some link</a></li>
</ul>
You just have to make sure your host will support php and dont forget to give your pages the .php extension. That way you only have to edit links.php... not each page.
Hope that helps
Last edited by thehuskybear; 09-02-2008 at 11:05 PM..
|