/**
  * @param Page $page
  */
 public function renderPage(Page $page)
 {
     $layout = $page->getLayout();
     $this->doc->addPage($layout);
     $this->renderLayout($layout);
     $this->renderItems($page->getFinalizedItems());
 }