Comments on: Making Websites Without Serverside Scripting http://www.terminally-incoherent.com/blog/2008/05/19/making-websites-without-serverside-scripting/ I will not fix your computer. Tue, 04 Aug 2020 22:34:33 +0000 hourly 1 https://wordpress.org/?v=4.7.26 By: Terminally Incoherent » Blog Archive » Your Homepage on Google AppEngine http://www.terminally-incoherent.com/blog/2008/05/19/making-websites-without-serverside-scripting/#comment-11615 Mon, 23 Feb 2009 17:31:45 +0000 http://www.terminally-incoherent.com/blog/2008/05/15/making-websites-without-serverside-scripting/#comment-11615

[…] I decided to create something a little bit more complex, that will allow me to grow and expand my home page much more easily. Besides, I am firm believer that you can’t really design a good looking web page without using includes. It just doesn’t work. So even when when I have no server side includes I cheat and use Javascript to simulate them. […]

]]>
By: Luke Maciak http://www.terminally-incoherent.com/blog/2008/05/19/making-websites-without-serverside-scripting/#comment-9103 Tue, 20 May 2008 14:12:06 +0000 http://www.terminally-incoherent.com/blog/2008/05/15/making-websites-without-serverside-scripting/#comment-9103

@Tino – thanks for bringing up m4 Tino! I never used it, but it does seem like a more “accessible” way of doing this stuff. Then again, maintenance seems like a pain in the ass due to the fact you need to “re-compile” the thing. It’s an interesting alternative.

@Gamberoni – well, I wasn’t really interested in menus. I wanted to have a page template with a header (with all the css, and javascript links), footer and a sidebar that would be in one place where they could be edited easily. In most server side languages you can do something like this when you create a new page:

< ?php include "header.php"; ?>
< ?php include "sidebar.php";?>