annotate decoupage/templates/head.html @ 114:5099d45c7730 default tip

output ini_path on error
author Jeff Hammel <k0scist@gmail.com>
date Mon, 03 Jun 2024 09:29:38 -0700
parents 8596a1d97740
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
46
127843e097b3 add a stub head template for inclusion; not sure if this is the way to go; alternatively, each formatter could contribute to the markup individually
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
1 <head xmlns="http://www.w3.org/1999/xhtml"
127843e097b3 add a stub head template for inclusion; not sure if this is the way to go; alternatively, each formatter could contribute to the markup individually
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
2 xmlns:py="http://genshi.edgewall.org/"
127843e097b3 add a stub head template for inclusion; not sure if this is the way to go; alternatively, each formatter could contribute to the markup individually
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
3 xmlns:xi="http://www.w3.org/2001/XInclude"
127843e097b3 add a stub head template for inclusion; not sure if this is the way to go; alternatively, each formatter could contribute to the markup individually
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
4 py:strip="True">
127843e097b3 add a stub head template for inclusion; not sure if this is the way to go; alternatively, each formatter could contribute to the markup individually
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
5 <!-- generic head template to be <xi:include>-d -->
82
8596a1d97740 unicode
Jeff Hammel <jhammel@mozilla.com>
parents: 47
diff changeset
6 <meta charset="utf-8"></meta>
47
0cfb84d788d6 * make head.html actually be correct;
Jeff Hammel <jhammel@mozilla.com>
parents: 46
diff changeset
7 <title>${title or path}</title>
46
127843e097b3 add a stub head template for inclusion; not sure if this is the way to go; alternatively, each formatter could contribute to the markup individually
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
8 <link py:if="icon" rel="icon" href="${icon}"/>
47
0cfb84d788d6 * make head.html actually be correct;
Jeff Hammel <jhammel@mozilla.com>
parents: 46
diff changeset
9 <link py:for="sheet in css or ()" rel="stylesheet" type="text/css" href="${sheet}"/>
0cfb84d788d6 * make head.html actually be correct;
Jeff Hammel <jhammel@mozilla.com>
parents: 46
diff changeset
10 <script py:for="script in scripts or ()" src="${script}"></script>
46
127843e097b3 add a stub head template for inclusion; not sure if this is the way to go; alternatively, each formatter could contribute to the markup individually
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
11 </head>