[CMF-checkins] CVS: CMF - index_html.pt:1.1 main_template.pt:1.1 standard_top_bar.pt:1.1
andrew@digicool.com
andrew@digicool.com
Thu, 21 Jun 2001 16:01:19 -0400 (EDT)
Update of /cvs-repository/CMF/CMFDecor/skins/zpt_generic
In directory korak.digicool.com:/tmp/cvs-serv32617/zpt_generic
Added Files:
index_html.pt main_template.pt standard_top_bar.pt
Log Message:
*Adding files moved from old first skin directory which has been
removed.
--- Added File index_html.pt in package CMF ---
<html metal:use-macro="container/main_template/macros/master">
<body>
<div metal:fill-slot="main">
<table cellpadding="0" cellspacing="0" width="100%">
<tr>
<td valign="top" width="80%">
<h1> Welcome to <span tal:replace="container/title">(portal title)</span> </h1>
<dl>
<dt> Overview </dt>
<dd tal:content="container/description"> Description here </dd>
</dl>
</td>
<td valign="top" width="20%" tal:content="structure container/news_box">
News here
</td>
</tr>
</table>
</div>
</body>
</html>
--- Added File main_template.pt in package CMF ---
<html metal:define-macro="master">
<head>
<title tal:define="ob_title here/Title; portal_title container/title" tal:content="string:${portal_title}: ${ob_title}">The title</title>
<div tal:replace="structure container/css_inline_or_link"/>
</head>
<body>
<div metal:use-macro="container/standard_top_bar/macros/top_bar"/>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<!-- Vertical whitespace -->
<td colspan="4"><br/></td>
</tr>
<tr valign="top">
<td class="SideBar" width="15%" align="left" valign="top" tal:content="structure container/actions_box">
Actions box
</td>
<!-- Horizontal whitespace -->
<td width="1%"> </td>
<td class="Desktop" colspan="2" width="84%" valign="top">
<p tal:condition="exists:options/portal_status_message" tal:content="options/portal_status_message" class="DesktopStatusBar"></p>
<div tal:condition="exists:here/localHeader" replace="structure here/localHeader"/>
<div metal:define-slot="main"/>
<div tal:condition="exists:here/localFooter" replace="structure here/localFooter"/>
</td>
</tr>
</table>
</body>
</html>
--- Added File standard_top_bar.pt in package CMF ---
<html>
<body>
<div metal:define-macro="top_bar">
<!-- Top bar -->
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr><td colspan="3" witdth="100%">
<!-- hack around netscape 4.x to ensure top table is solid black -->
<table class="Masthead" cellspacing="0" cellpadding="0" border="0" width="100%">
<tr class="Masthead">
<td class="PortalLogo" align="left" valign="top" width="1%">
<a href="." tal:attributes="href container/portal_url"><img src="logo.png" alt="Zope Logo" border="0"></a>
</td>
<td class="PortalTitle" width="29%" align="left" valign="center">
<h1 tal:define="ob_title here/Title; portal_title container/title" tal:content="string:${portal_title}: ${ob_title}">The title</h1>
</td>
<td class="NavBar" align="right" valign="bottom" width="70%" wrap="no">
<form action="search" method="GET"
tal:define="portal_url container/portal_url"
tal:attributes="action string:${portal_url}/search">
<a href="." tal:attributes="href portal_url">home</a>
<a href="roster"
tal:attributes="href string:${portal_url}/Members">members</a>
<a href="recent_news"
tal:attributes="href string:${portal_url}/recent_news">news</a>
<a href="search_form"
tal:attributes="href string:${portal_url}/search_form">search</a>
<input name="SearchableText" size="16">
<input border="0" type="image" name="go" src="go.gif">
</form>
</td>
</tr>
</table>
</td></tr></table>
</div>
</body>
</html>