#! /usr/local/bin/perl # stylin.pl - generate HTML template for # the fictional FANG Surfboard Company web site. # From suggestions in the Yale C/AIM WWW Style Manual # http://info.med.yale.edu/CAIM/StyleManual_Top.html # # Pete Reppert # April, 1996 require 'cgi-lib.pl'; &ReadParse; # Initialize variables. $title = $in{'title'}; $header_same = $in{'header_same'}; $maintainer = $in{'maintainer'}; $bodtext = $in{'bodtext'}; $style = $in{'style'}; $top = $in{'top'}; $prev = $in{'prev'}; $next = $in{'next'}; $currtime = time(); $date = localtime($currtime);