File: layout.xml

package info (click to toggle)
ciderwebmail 1.05%2B20221106-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 2,392 kB
  • sloc: perl: 3,199; xml: 782; javascript: 675; sh: 42; makefile: 29
file content (22 lines) | stat: -rw-r--r-- 700 bytes parent folder | download | duplicates (6)
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>