25 lines
747 B
XML
25 lines
747 B
XML
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"
|
|
xmlns:tal="http://xml.zope.org/namespaces/tal"
|
|
xmlns:metal="http://xml.zope.org/namespaces/metal"
|
|
xmlns:i18n="http://xml.zope.org/namespaces/i18n"
|
|
lang="en"
|
|
metal:use-macro="here/prefs_main_template/macros/master"
|
|
i18n:domain="plone">
|
|
<body>
|
|
|
|
<metal:main metal:fill-slot="prefs_configlet_main" i18n:domain="plone">
|
|
|
|
<header>
|
|
<h1 class="documentFirstHeading" tal:content="view/label">View Title</h1>
|
|
<p class="lead" tal:content="view/description">Description</p>
|
|
</header>
|
|
|
|
<div id="content-core" tal:attributes="class view/settings">
|
|
<span tal:replace="structure view/contents" />
|
|
</div>
|
|
|
|
</metal:main>
|
|
|
|
</body>
|
|
</html>
|