kotti/templates/view/document.pt

Summary

Maintainability
Test Coverage
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
      metal:use-macro="api.macro('kotti:templates/view/master.pt')">

  <article metal:fill-slot="content" class="document-view content">
    <h1>${context.title}</h1>
    <p class="lead">
      ${context.description}
    </p>
    <div tal:replace="api.render_template('kotti:templates/view/tags.pt')"></div>
    <div class="body" tal:content="structure context.body | None">
    </div>
  </article>

</html>