20 lines
656 B
PHP
20 lines
656 B
PHP
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||
|
<title>Congegni Issues Exporter - @yield('title')</title>
|
||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css">
|
||
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<main class="container-fluid d-flex justify-content-center align-items-center" style="min-height:100vh;">
|
||
|
@yield('content')
|
||
|
</main>
|
||
|
</body>
|
||
|
|
||
|
</html>
|