This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
glasnost/templates/easter-eggs/StandardLookAndFeel.html

97 lines
3.5 KiB
HTML

<metal:block define-macro="pre"><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
</metal:block>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:tal="http://xml.zope.org/namespaces/tal"
xmlns:metal="http://xml.zope.org/namespaces/metal"
metal:define-macro="master">
<head>
<title metal:define-slot="title">Website title</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" />
<link rel="home" href="/" />
<link rel="stylesheet" type="text/css" href="/css/basicstyle.css" />
<meta metal:define-slot="contextualHeaders" />
<style type="text/css" media="screen">
<!--
@import url("/css/style.css");
-->
</style>
</head>
<body>
<div id="main">
<div id="banner">
<div id="eeorg">
<a href="/"><img width="" height="" border="0" tal:attributes="alt str(virtualHost)" src="/images/ee_org.png" /></a>
</div>
<div id="toolbar">
<span metal:use-macro="buttons.tal/preferences" />
<span metal:use-macro="buttons.tal/admin" />
<span metal:use-macro="buttons.tal/logout" />
<span metal:use-macro="buttons.tal/newAccount" />
<span metal:use-macro="buttons.tal/login" />
<span metal:use-macro="buttons.tal/about" />
</div>
<div tal:attributes="id 'path'" tal:condition="fileName.startswith('index') or currentObject">
<span tal:define="objectPath getPathToObject(currentObject)" tal:condition="objectPath" >
<span tal:condition="currentObject" tal:omit-tag="" tal:repeat="o objectPath">
<a tal:attributes="href o.getUrl()" tal:content="o.label">breadCrumb</a> &nbsp;<b>&gt;</b>&nbsp;
</span>
<span tal:condition="currentObject" tal:replace="currentObject.label">courant</span>
</span>
</div>
</div>
<div id="content">
<div metal:define-slot="main">Content</div>
</div>
</div>
<div id="navigation">
<div id="logo">
<a href="/"><img width="77" height="74" alt="Mr Eggs" src="/images/mr_egg.png" /></a>
</div>
<!--
<div class="search">
<form method="get" tal:attributes="action roleUrl('search', 'go')">
Recherche:<br />
<input type="text" size="20" name="terms" value="" />
</form>
</div>
-->
<div tal:condition="user">
<h3 class="nav1" tal:translate="">All Objects</h3>
<ul class="nav2" tal:on-error="nothing">
<li tal:repeat="role [x for x in getServerRoles() if canGetObjects(x)]">
<a class="nav" tal:attributes="href role.url" tal:content="role.label">server</a>
</li>
</ul>
</div>
<div tal:define="mR getMainRubric()" tal:condition="mR and mR.membersSet" tal:on-error="nothing" tal:repeat="r1 mR.membersSet">
<h3 class="nav1"><a class="nav" tal:content="r1" tal:attributes="href r1.getUrl()">Nav 1</a></h3>
<ul class="nav2" tal:on-error="nothing">
<li tal:repeat="r2 r1.membersSet"><a class="nav" tal:content="r2.label" tal:attributes="href r2.getUrl()">Nav 2</a>
<ul class="nav3" tal:on-error="nothing">
<li tal:repeat="r3 r2.membersSet"><a class="nav" tal:content="r3.label" tal:attributes="href r3.getUrl()">Nav 3</a></li>
</ul>
</li>
</ul>
</div>
<div id="gnu">
<a href="http://www.gnu.org"><img src="/images/logo-gnu.png" alt="GNU" width="148" height="127" /></a>
</div>
<div class="copyleft">
<a href="">Copyleft</a> &copy; Easter-eggs.org
</div>
</div>
</body>
</html>