template_view.php 1.2 KB

1234567891011121314151617181920212223242526272829
  1. <!DOCTYPE html>
  2. <html lang="ru">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous">
  8. <title>Блог</title>
  9. </head>
  10. <body>
  11. <section>
  12. <div class="container">
  13. <!-- main block -->
  14. <?php include 'app/views/'.$content_view; ?>
  15. <!-- end main block -->
  16. </div>
  17. </section>
  18. <footer>
  19. <div class="row mt-5 fs-6">
  20. <div class="col-12">
  21. <pre>
  22. <? //var_dump($_SESSION);?>
  23. </pre>
  24. </div>
  25. </div>
  26. </footer>
  27. <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe" crossorigin="anonymous"></script>
  28. </body>
  29. </html>