Exemple #1
0
 /**
  * {@inheritdoc}
  */
 public function initBlock()
 {
     $this->sectionAppend('top', Top::forge());
     $document = \Magelight\Core\Blocks\Document::getInstance();
     $document->addMeta(['http-equiv' => "content-type", 'content' => "text/html; charset=utf-8"]);
     $document->addMeta(['name' => 'keywords', 'content' => 'welcome app, magelight']);
     $document->addCss('Magelight/Core/static/css/bootstrap.min.css');
     $document->addCss('Magelight/Core/static/css/core.css');
     $document->addJs('Magelight/Core/static/js/jquery.js');
     $document->addJs('Magelight/Core/static/js/bootstrap.min.js');
     return parent::initBlock();
 }