1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
<!DOCTYPE html>
<html
xmlns="http://www.w3.org/1999/xhtml"
xmlns:tal="http://purl.org/petal/1.0/"
xmlns:metal="http://xml.zope.org/namespaces/metal"
xmlns:i18n="http://xml.zope.org/namespaces/i18n"
i18n:domain="CiderWebmail"
metal:define-macro="layout">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title metal:define-slot="title">CiderWebmail</title>
</head>
<body>
<ul metal:use-macro="folder_tree.xml#folder_tree"/>
<div metal:use-macro="folder_tree.xml#folder_data"/>
<div id="content">
<div metal:define-slot="content" tal:omit-tag=""/>
</div>
</body>
</html>
|