page.blade.php 326 B

12345678910111213141516171819
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible">
  7. <title> @yield('title')</title>
  8. <style type="text/css">
  9. * {font-family: 'Comic Sans MS'}
  10. </style>
  11. </head>
  12. <body>
  13. @yield('posts')
  14. </body>
  15. </html>