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

73 lines
2.1 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>
<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/fsfeurope.css" />
<link tal:reroot="href" rel="home" href="/" />
<meta metal:define-slot="contextualHeaders" />
<script metal:use-macro="forms.tal/formScript"></script>
</head>
<body>
<div id="body">
<h1><img tal:attributes="alt str(virtualHost)" src="/images/logo-fsfeurope.png" /></h1>
<div id="nav">
<div tal:define="mR getMainRubric()" tal:condition="mR"
tal:repeat="r getSetContainedObjects(mR.membersSet, ['rubrics'])">
<h2>
<a tal:attributes="href r.getUrl()" tal:content="r.label">blah</a>
</h2>
<div tal:repeat="r2 getSetContainedObjects(r.membersSet, ['rubrics', 'articles'], sortOn='label')"
tal:omit-tag="">
<span class="navindent"><a tal:attributes="href r2.getUrl()" tal:content="r2.label">Pas sélectionné...</a></span>
</div>
</div>
<hr />
<a href="/" tal:reroot="href" tal:translate="fr">Retour au sommaire</a>
<hr />
<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" />
<hr />
<span metal:use-macro="buttons.tal/gotoObjects" />
<span metal:use-macro="buttons.tal/newObject" />
</div> <!-- end of nav -->
<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>
<div id="footer">
<a tal:attributes="href roleUrl('about')">Glasnost</a>
</div>
</body>
</html>