public function getContent()
 {
     $elements = $this->_layout->getStructure()->exportElements();
     // Make a tree of elements
     $els = $this->buildCompleteElementStructure($elements);
     // Make the HTML structure for output
     $html = $this->buildHtmlStructure($els, 0);
     return $html;
 }