<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<!--

  template.txt
  
  This is the root skeleton of the user interface of this portal
  application. All pages from the end-user interface will have this
  basic shape. It only includes two tokens: CONTENT and VERSION.
  CONTENT will be replaced with the content of all the other 
  templates (home, about, search). VERSION will be replaced with 
  the version number of your MyLibrary Perl modules.
  
  If you want to change the over all look & feel of this portal,
  then start here.

-->

	<head>
        <title>MyLibrary Portal</title>
        <link type="text/css" media="screen" rel="stylesheet" href="./etc/portal-screen.css" />
        <link type="text/css" media="print" rel="stylesheet" href="./etc/portal-print.css" />
    </head>
    <body>
        <div class='menu'>
            <h1>MyLibrary Portal</h1>
            <ol>
                <li>
                    <a href="./">Home</a>
                </li>
                <li>
                    <a href="./?cmd=about">About</a>
                </li>
                <li>
                    <a href="./?cmd=login">Login/Create account</a>
                </li>
            </ol>
            <form method='post' action='./'>
                <input type='hidden' name='cmd' value='search' />
                <input name='query' size='15' /><br />
                <input type='submit' value='Go' />
            </form>
            <p>
            ##PATRONS##
            </p>
        </div>
        <div class="content">
            <div>##CONTENT##</div>
            <div class='footer'>
                <p style='float: right; font-size: small; color: gray'>Managed with 
                <a href='http://dewey.library.nd.edu/mylibrary/' style='color: gray'>MyLibrary</a> version ##VERSION##</p>
                <p>Author: <a href="mailto:emorgan@nd.edu">Eric Lease Morgan</a> 
                <br />Date created: 2005-09-18 
                <br />Date updated: 2006-01-27 
                <br />URL: 
                <a href="http://dewey.library.nd.edu/morgan/portal/">http://dewey.library.nd.edu/morgan/portal/</a></p>
            </div>
        </div>
    </body>
</html>
