include("templates/top.html"); include("templates/left.html"); include("templates/main.html"); include("templates/bottom.html"); #### foreach $plate(keys %PLATES) { $TEMPLATES{$plate} = "template_folder/$plate"; if (open ($handle,"$TEMPLATES{$plate}) )
{ $TEMPLATES{$plate} = <$handle>;
close ($handle);
} } print $TEMPLATE{'top'} print $TEMPLATE{'left'} print $TEMPLATE{'main'} print $TEMPLATE{'bottom'}