This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
glasnost/templates/default/template.html

17 lines
612 B
HTML

<doc metal:use-macro="StandardLookAndFeel.html/pre"/>
<html xmlns:tal="http://xml.zope.org/namespaces/tal"
xmlns:metal="http://xml.zope.org/namespaces/metal"
metal:use-macro="StandardLookAndFeel.html/master">
<head>
<title metal:fill-slot="title" tal:content="str(virtualHost) + ' - ' + title">title</title>
<meta metal:fill-slot="contextualHeaders" tal:replace="structure contextualHeaders" />
</head>
<body>
<div metal:fill-slot="main" tal:omit-tag="">
<h1 tal:condition="title" tal:content="title">the title goes here</h1>
<span tal:replace="structure body" />
</div>
</body>
</html>