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

60 lines
1.9 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="stylesheet" title="Default" href="/css/wretched.css" />
<script metal:use-macro="forms.tal/formScript"></script>
</head>
<body>
<div id="header">
<h1 tal:content="str(virtualHost)">website title</h1>
</div>
<div id="navigation">
<ul tal:define="mR getMainRubric()">
<li><a href="/" tal:translate="">Home</a></li>
<li tal:condition="mR" tal:repeat="item mR.membersSet or []">
<a tal:attributes="href item.getUrl()" tal:content="item.label">item</a></li>
</ul>
<div id="commands" tal:condition="userToken">
<span metal:use-macro="buttons.tal/gotoObjects" />
<span metal:use-macro="buttons.tal/newObject" />
<a href="/login/logout" tal:translate="">Exit</a>
</div>
</div>
<div id="content">
<div metal:define-slot="main">
Arise, you prisoners of starvation!
Arise, you wretched of the earth!
For justice thunders condemnation.
A better world's in birth.
No more tradition's chains shall bind us.
Arise, you slaves, no more in thrall!
The earth shall rise on new foundations.
We have been naught, we shall be all.
'Tis the final conflict;
Let each stand in his place.
The international working class
Shall be the human race.
</div>
</div>
<div id="footer">
<span metal:use-macro="buttons.tal/newAccount">new account</span>
<span metal:use-macro="buttons.tal/login">login</span>
</div>
</body>
</html>