|
Posted by Chris F.A. Johnson on 08/28/06 23:28
On 2006-08-28, fraternitydisposal@gmail.com wrote:
> I'm making a personal site which contains links like home, resume,
> feedback, hobbies, links in every page. And i've managed to create an
> external css. How can i insert the said links in every page without
> copying and pasting the links in every page?
>
> My webhost doesn't support server side scripting.
Does it support server-side includes? Try a line like this in a
file with .shtml for its extension (e.g., index.shtml):
<!--#include virtual="links.html" -->
> Can i store the links in an external file and insert them by client
> side scripting? Please help.
An alternative is to have a link to a page of links.
--
Chris F.A. Johnson <http://cfaj.freeshell.org>
===================================================================
Author:
Shell Scripting Recipes: A Problem-Solution Approach (2005, Apress)
[Back to original message]
|