annotate examples/includes/skins/default/layout.html @ 541:4a53763b3948

Merged cspeedups branch into trunk.
author cmlenz
date Thu, 28 Jun 2007 17:43:31 +0000
parents 24757b771651
children
rev   line source
21
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
1 <html xmlns="http://www.w3.org/1999/xhtml"
230
24757b771651 Renamed Markup to Genshi in repository.
cmlenz
parents: 61
diff changeset
2 xmlns:py="http://genshi.edgewall.org/"
21
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
3 xmlns:xi="http://www.w3.org/2001/XInclude"
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
4 py:strip="">
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
5 <xi:include href="../macros.html" />
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
6 <head>
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
7 <title>Hello ${hello}</title>
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
8 <style type="text/css">@import(style.css)</style>
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
9 </head>
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
10 <body py:match="body">
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
11 <xi:include href="header.html" />
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
12 <div id="content">
38
fec9f4897415 Fix for #2 (incorrect context node in path expressions). Still some paths that produce incorrect results, but the common case seems to work now.
cmlenz
parents: 21
diff changeset
13 ${select('*')}
21
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
14 </div>
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
15 <xi:include href="footer.html" />
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
16 </body>
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
17 </html>
Copyright (C) 2012-2017 Edgewall Software