gata basic ul

This commit is contained in:
Cerbu Andrei Mihnea
2023-05-10 03:28:30 +03:00
parent 90f12ab916
commit a739a66ae4
19 changed files with 255 additions and 110 deletions
+11 -1
View File
@@ -1,10 +1,14 @@
<?php
use app\core\Application;
?>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bootstrap demo</title>
<title><?php echo $this->title; ?></title>
</head>
<body>
@@ -42,6 +46,12 @@
</nav>
<div class="container">
<?php
$flashMessage = Application::$app->session->getFlash('success');
if($flashMessage){
echo $flashMessage;
}
?>
{{content}}
</div>