#!/usr/bin/perl use CGI qw(:standard ); #Handy for printing header $CGI::HEADERS_ONCE = 1; #Make sure header is printed only once print header(); require "/pathtocommon/common.pl"; $title = 'First Templated Page'; $additional_header = qq~ ~; $bground = "#000000"; $text = "#ffffff"; $main = "Templating Rocks!"; $copyright = "(C) 2001 MyCompany"; &utemplate;