<html xmlns:tal="http://xml.zope.org/namespaces/tal"
      xmlns:metal="http://xml.zope.org/namespaces/metal"
      metal:use-macro="here/main_template/macros/master">
<body>
<div metal:fill-slot="main">
<p tal:condition="python: here.portal_membership.isAnonymousUser()"
   tal:content="string:You have been logged out."></p>
<p tal:condition="python: not(here.portal_membership.isAnonymousUser())">
You are logged in outside the portal.  You may need to
<a href="/manage_zmi_logout">log out of the Zope management interface</a>.
</p>
</div>
</body>
</html>