21 lines
943 B
PHP
21 lines
943 B
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="robots" content="noindex, nofollow">
|
|
{{-- Comes back on its own: an update takes a minute, and nobody should have
|
|
to guess whether to keep hitting reload. --}}
|
|
<meta http-equiv="refresh" content="20">
|
|
<title>{{ config('app.name') }}</title>
|
|
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
|
|
{{-- Self-contained on purpose: this page is shown while the application is
|
|
mid-deploy or freshly installed, which is exactly when the Vite
|
|
manifest may not exist. Pulling it in through @vite would throw an
|
|
exception instead of rendering the reassurance the visitor came for. --}}
|
|
</head>
|
|
<body style="margin:0;min-height:100vh">
|
|
@include('partials.updating-panel')
|
|
</body>
|
|
</html>
|