comparison decoupage/templates/head.html @ 82:8596a1d97740

unicode
author Jeff Hammel <jhammel@mozilla.com>
date Fri, 29 Nov 2013 20:45:20 -0800
parents 0cfb84d788d6
children
comparison
equal deleted inserted replaced
81:bb289832e061 82:8596a1d97740
1 <head xmlns="http://www.w3.org/1999/xhtml" 1 <head xmlns="http://www.w3.org/1999/xhtml"
2 xmlns:py="http://genshi.edgewall.org/" 2 xmlns:py="http://genshi.edgewall.org/"
3 xmlns:xi="http://www.w3.org/2001/XInclude" 3 xmlns:xi="http://www.w3.org/2001/XInclude"
4 py:strip="True"> 4 py:strip="True">
5 <!-- generic head template to be <xi:include>-d --> 5 <!-- generic head template to be <xi:include>-d -->
6 <meta charset="utf-8"></meta>
6 <title>${title or path}</title> 7 <title>${title or path}</title>
7 <link py:if="icon" rel="icon" href="${icon}"/> 8 <link py:if="icon" rel="icon" href="${icon}"/>
8 <link py:for="sheet in css or ()" rel="stylesheet" type="text/css" href="${sheet}"/> 9 <link py:for="sheet in css or ()" rel="stylesheet" type="text/css" href="${sheet}"/>
9 <script py:for="script in scripts or ()" src="${script}"></script> 10 <script py:for="script in scripts or ()" src="${script}"></script>
10 </head> 11 </head>