We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59ddccc commit e75df16Copy full SHA for e75df16
1 file changed
app/Views/_layouts/default.php
@@ -1,5 +1,6 @@
1
<?php
2
/**
3
+ * @var string|null $description
4
* @var string|null $title
5
* @var Framework\MVC\View $view
6
*/
@@ -10,6 +11,9 @@
10
11
<head>
12
<meta charset="utf-8">
13
<meta name="viewport" content="width=device-width, initial-scale=1">
14
+ <meta name="description" content="<?= isset($description)
15
+ ? esc($description)
16
+ : 'Website built with Aplus Framework' ?>">
17
<title><?= isset($title) ? esc($title) : 'Aplus Framework' ?></title>
18
<link rel="shortcut icon" href="/favicon.ico">
19
<style>
0 commit comments