<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">
    <metal:block fill-slot="base">
        <base href=""
              tal:attributes="href python: here.absolute_url() + '/'">
    </metal:block>
<body>

<div metal:fill-slot="header">

  <h1 id="DesktopTitle"
      tal:content="here/Title">Document Title</h1>

  <div id="DesktopDescription" tal:content="here/Description">
      Document Description goes here.
  </div>

  <div metal:use-macro="here/content_byline/macros/byline">By Me</div>

</div>

<div metal:fill-slot="main">	  

  <div id="DiscussionAbove">
   <span tal:replace="structure here/aboveInThread"></span>
  </div>

  <div tal:replace="structure here/TranslatedBody">Body</div>

  <div class="Discussion">
   <span tal:replace="structure here/viewThreadsAtBottom"
        tal:condition="here/viewThreadsAtBottom|nothing">Dicussions</span>
  </div>

</div>

</body>
</html>