@@ 353-355 (lines=3) @@ | ||
350 | public function getMetaTags() { |
|
351 | $metas = []; |
|
352 | ||
353 | if (!empty($this->app->config['site']['keywords'])) { |
|
354 | $metas['metaName:keywords'] = ['name' => 'keywords', 'content' => $this->app->config['site']['keywords']]; |
|
355 | } |
|
356 | if (!empty($this->app->config['site']['description'])) { |
|
357 | $metas['metaName:description'] = ['name' => 'description', 'content' => $this->app->config['site']['description']]; |
|
358 | } |
|
@@ 356-358 (lines=3) @@ | ||
353 | if (!empty($this->app->config['site']['keywords'])) { |
|
354 | $metas['metaName:keywords'] = ['name' => 'keywords', 'content' => $this->app->config['site']['keywords']]; |
|
355 | } |
|
356 | if (!empty($this->app->config['site']['description'])) { |
|
357 | $metas['metaName:description'] = ['name' => 'description', 'content' => $this->app->config['site']['description']]; |
|
358 | } |
|
359 | if (!empty($this->app->config['site']['metatags'])) { |
|
360 | foreach ($this->app->config['site']['metatags'] as $meta) { |
|
361 | if (!empty($meta['name'])) { |