#!/usr/bin/perl ###################################################################### # # Atmo Page Template # ###################################################################### $dir_libs = "/web/htdocs/cgi-libs/"; require $dir_libs."lib_string.cgi"; require $dir_libs."lib_atmo.cgi"; ###################################################################### # # General variable configuration. # ###################################################################### # Template information. $template_data{"main_title"} = "Department of Atmospheric Sciences"; $template_data{"meta_description"} = "The home of The University of Arizona's Department of Atmospheric Sciences."; $template_data{"meta_keywords"} = "weather, clouds, rain"; $template_data{"major_section"} = "products"; # Input source. $body = &get_file_as_string("index_source.html"); ###################################################################### # # Page creation code. # ###################################################################### print "content-type: text/html\n\n"; $template_data{"body"} = $body; print &make_normal_page(*template_data);