[Zope3-checkins] CVS: Zope3/src/zope/app/www - __init__.py:1.1.2.1 standard_macros.pt:1.1.2.1

Jim Fulton jim@zope.com
Mon, 23 Dec 2002 14:32:41 -0500


Update of /cvs-repository/Zope3/src/zope/app/www
In directory cvs.zope.org:/tmp/cvs-serv19908/zope/app/www

Added Files:
      Tag: NameGeddon-branch
	__init__.py standard_macros.pt 
Log Message:
Initial renaming before debugging

=== Added File Zope3/src/zope/app/www/__init__.py ===
#
# This file is necessary to make this directory a package.


=== Added File Zope3/src/zope/app/www/standard_macros.pt ===
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
         "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html metal:define-macro="page">
<head>
  <title 
   metal:define-slot="title"
   tal:content="options/getTitle | 
                view/getTitle | 
                context/getTitle|default"
   >Zope</title>
  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  <div metal:define-slot="headers">
  </div>
</head>
<body>
  <div metal:define-slot="body">
     <p>Body here</p>
  </div>
</body>
</html>