18 lines
769 B
PHP
18 lines
769 B
PHP
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="icon" type="image/x-icon" href="{{ asset('moonwell-icon-512.ico') }}">
|
|
@if (request()->routeIs('landing.index'))
|
|
<title>MoonWell — Лунный колодец</title>
|
|
<meta name="description" content="Пройди историю Азерота — от Классики до Короля-лича — в своём темпе, в одиночку или с небольшим отрядом.">
|
|
@endif
|
|
@vite('resources/js/app.js')
|
|
<x-inertia::head />
|
|
</head>
|
|
<body>
|
|
<x-inertia::app />
|
|
@include('partials.yandex-metrika')
|
|
</body>
|
|
</html>
|