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