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/plane/StandardLookAndFeel.html

77 lines
2.8 KiB
HTML
Raw Blame History

<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>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" />
<title metal:define-slot="title">[title]</title>
<link tal:reroot="href" rel="stylesheet" href="/css/plane.css" />
<link tal:reroot="href" rel="home" href="/" />
<meta metal:define-slot="contextualHeaders" />
<script metal:use-macro="forms.tal/formScript"></script>
<!--
<script tal:reroot="src" src="/javascript/htmlarea/htmlarea.js" type="text/javascript"></script>
<script tal:reroot="src" src="/javascript/htmlarea/htmlarea-lang-en.js" type="text/javascript"></script>
<script tal:reroot="src" src="/javascript/htmlarea/dialog.js" type="text/javascript"></script>
-->
</head>
<body>
<div id="top">
<div id="searchBox">
<form id="searchForm" tal:attributes="action roleUrl('search', 'go')">
<input id="search" name="terms" size="20"/>
<input tal:attr-translate="value" type="submit" class="button" value="Search"/>
</form>
</div>
<h1 tal:content="str(virtualHost)">website title</h1>
<!-- <a href="/" tal:reroot="href"><img tal:reroot="src" src="/images/glasnost-plane.png" alt="Glasnost" class="logo"/></a>-->
</div>
<div id="tabs">
<a href="/" tal:reroot="href" tal:translate="">Home</a>
<div metal:use-macro="nav.tal/aBlockOneLevelAllObjects" />
</div>
<div id="personalBar">
<a class="button user" tal:condition="user" tal:attributes="href user.getUrl()" tal:content="user">userName</a>
<span tal:condition="not user" tal:translate="">You are not logged in</span>
<span metal:use-macro="buttons.tal/login" />
<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/about" />
</div>
<div id="pathBar" tal:condition="fileName.startswith('index') or currentObject"
tal:define="breadCrumbPrefix 'Vous <20>tes ici: '">
<span metal:use-macro="misc.tal/breadCrumb" />
</div>
<div id="leftBar">
<div id="navBox" tal:condition="user">
<span class="boxTitle">Navigation</span>
<ul metal:use-macro="nav.tal/ulRoles" />
</div>
</div>
<div id="main-content">
<div metal:define-slot="main">
C'est ici que viendra le contenu du tag ayant l'attribut metal:fill-slot="main".
</div>
</div> <!-- end of main-content -->
<div id="footer">
<a href="http://glasnost.entrouvert.org">Glasnost</a>
</div> <!-- end of footer -->
</body>
</html>