1
0
Fork 0
This repository has been archived on 2026-05-10. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
sexelleryoga/resources/views/layouts/default.blade.php
2020-10-03 16:07:18 +02:00

18 lines
408 B
PHP

<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="{{ asset('/assets/bootstrap.min.css') }}">
<title></title>
</head>
<body>
<div class="container mt-5 p-5 text-center">
@yield('content')
</div>
</body>
</html>