/**
  * Parse the data into the template
  *
  * @return	void
  */
 private function parse()
 {
     // Add css
     $this->header->addCSS('/src/Frontend/Modules/' . $this->getModule() . '/Layout/Css/Instagram.css');
     // Fetch instagram user
     $instagramUser = FrontendInstagramModel::get($this->data['id']);
     // Pass user info to javascript
     $this->addJSData('user', $instagramUser);
     // Parse user info in template
     $this->tpl->assign('user', $instagramUser);
 }