#!/bin/sh cat << EOF <!-- Main template page This page implements the navbar, search, feedback, plus two tables: one table below search/feedback and to the right of the the navbar the other below the navbar, but full width of the page. Page Title: AWT SHORT COURSE HTML Author: Al Brown --> <HTML> <HEAD> <!-- Change the Title please --> <TITLE>AWT SHORT COURSE: #title</TITLE> </HEAD> <!-- If the images and link colors will not be rotating, please change "yes" to "no" in the folowing variable declaration. IMG_ROTATE=yes --> <BODY BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#238E23" ALINK="#856363" VLINK="#856363"> <TABLE ALIGN=LEFT> <TR VALIGN=TOP> <!-- Navbar segment --> <!-- *_NAVBAR will be filled in later via a script add "dot" to image name for appropriate navbar link to reflect current directory: i.e. if this page is in the directory What is New? change 2nav148x30.gif to nav2dot148x30.gif --> <TD width=148> <A HREF="/developer/welcome.html"> <IMG BORDER=0 SRC="/developer/images/devlogo.gif" ALIGN=LEFT ALT="Developer Connection Home" WIDTH=147 HEIGHT=62> </A> <BR clear=LEFT> <A HREF="/developer/techsup/"> <IMG BORDER=0 SRC="/developer/images/devbut1.gif" ALIGN=LEFT ALT="Technical Support" WIDTH=146 HEIGHT=23> </A> <BR clear=LEFT> <A HREF="/developer/discuss/"> <IMG BORDER=0 SRC="/developer/images/devbut2.gif" ALIGN=LEFT ALT="Discussion Forum" WIDTH=146 HEIGHT=24> </A> <BR clear=LEFT> <A HREF="/developer/events/"> <IMG BORDER=0 SRC="/developer/images/devbut3.gif" ALIGN=LEFT ALT="Events and Training" WIDTH=146 HEIGHT=23> </A> <BR clear=LEFT> <A HREF="/developer/product/"> <IMG BORDER=0 SRC="/developer/images/devbut4.gif" ALIGN=LEFT ALT="Product Discounts" WIDTH=146 HEIGHT=23> </A> <BR clear=LEFT> <A HREF="/developer/newsletter/"> <IMG BORDER=0 SRC="/developer/images/devbut5.gif" ALIGN=LEFT ALT="Newsletter" WIDTH=146 HEIGHT=22> </A> <BR clear=LEFT> <A HREF="/developer/techdocs/"> <IMG BORDER=0 SRC="/developer/images/devbut6.gif" ALIGN=LEFT ALT="Technical Docs" WIDTH=146 HEIGHT=22> </A> <BR clear=LEFT> <A HREF="/developer/changeregister/"> <IMG BORDER=0 SRC="/developer/images/devbut7.gif" ALIGN=LEFT ALT="Change Reigstration" WIDTH=146 HEIGHT=25> </A> <BR clear=LEFT> <A HREF="http://java.sun.com"> <IMG BORDER=0 SRC="/developer/images/navbar/10nav148x76.gif" ALIGN=LEFT ALT="Java Home Page" WIDTH=148 HEIGHT=76> </A> <BR CLEAR=LEFT> <A HREF="applet.html"> <IMG WIDTH=147 HEIGHT=23 BORDER=0 ALIGN=LEFT SRC="../images/behavior.gif" ALT="Working Applet"> </A> <BR CLEAR=LEFT> <A HREF="help.html"> <IMG WIDTH=140 HEIGHT=23 BORDER=0 ALIGN=LEFT SRC="../images/help.gif" ALT="Help and Hints"> </A> <BR CLEAR=LEFT> <A HREF="solution.html"> <IMG WIDTH=147 HEIGHT=23 BORDER=0 ALIGN=LEFT SRC="../images/solution.gif" ALT="Source Code"> </A> <BR CLEAR=LEFT> <A HREF="../../TOC.html"> <IMG WIDTH=147 HEIGHT=23 BORDER=0 ALIGN=LEFT SRC="../images/contents.gif" ALT="Table of Contents"> </A> <BR CLEAR=LEFT> </TD> </TR> </TABLE> <!-- Beginning of the Search/Feedback table This table will also contain all text to the right of the navbar --> <TABLE> <TR> <TD WIDTH=452 ALIGN=RIGHT> <img src=../images/Exercise.gif> </TD> </TR> <TR> <TD WIDTH=452 COLSPAN=2 ALIGN=right> <!--breadcrumb trail; change to reflect the current URL--> <!-- Please change to reflect where _exactly_ you are in the site <!-- Add more subcategories as needed --> <!-- Please Change these. The Links are SubCat#, and titled SubCategory# --> </TD> </TR> <!--- Please put everything you want here to the right of the navbar. <TR> <TD> This is the MAIN TABLE. Put data HERE unless you need a table that REQUIRES the full screen width, i.e. an event schedule table. Add a new table row for the data. If the text needs to be in two columns, use this <TR> structure: Make the width=452 <TR> <TD WIDTH=226> </TD> <TD WIDTH=226> </TD> </TR> </TD> </TR> ---> <TR> <TD width=452> EOF cat $1 cat << EOF </TD> </TR> </TABLE> </BODY> </HTML> EOF