mirror of
https://github.com/coollabsio/coolify.git
synced 2026-09-24 15:30:03 -05:00
19 lines
410 B
PHP
19 lines
410 B
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}" class="dark">
|
|
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="robots" content="noindex">
|
|
<title>Coolify</title>
|
|
@routes
|
|
@vite(['resources/css/app.css', 'resources/js/app.js'])
|
|
@inertiaHead
|
|
</head>
|
|
|
|
<body>
|
|
@inertia
|
|
</body>
|
|
|
|
</html>
|