mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-29 18:20:01 +00:00
49 lines
1.8 KiB
PHP
49 lines
1.8 KiB
PHP
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<base href="{{ route('index') }}/">
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
<meta name="robots" content="noindex, nofollow, noarchive, noodp, NoImageIndex, noydir">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="color-scheme" content="light dark">
|
|
|
|
<title>
|
|
@if($subTitle)
|
|
{{ $subTitle }} »
|
|
@endif
|
|
|
|
@if($title !== 'Firefly III')
|
|
{{ $title }} »
|
|
@endif
|
|
Firefly III
|
|
</title>
|
|
|
|
<!--begin::Primary Meta Tags-->
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<!--begin::Fonts-->
|
|
<link href="v4/css/fonts.css" rel="stylesheet">
|
|
<!--end::Fonts-->
|
|
|
|
<!--begin::Third Party Plugin(OverlayScrollbars)-->
|
|
{{--
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/overlayscrollbars@2.1.0/styles/overlayscrollbars.min.css"
|
|
integrity="sha256-LWLZPJ7X1jJLI5OG5695qDemW1qQ7lNdbTfQ64ylbUY=" crossorigin="anonymous">
|
|
--}}
|
|
<!--end::Third Party Plugin(OverlayScrollbars)-->
|
|
<!--begin::Third Party Plugin(Bootstrap Icons)-->
|
|
{{--
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.min.css"
|
|
integrity="sha256-BicZsQAhkGHIoR//IB2amPN5SrRb3fHB8tFsnqRAwnk=" crossorigin="anonymous">
|
|
--}}
|
|
<!--end::Third Party Plugin(Bootstrap Icons)-->
|
|
<!--begin::Required Plugin(AdminLTE)-->
|
|
<link rel="stylesheet" href="v4/css/adminlte.css">
|
|
<!--end::Required Plugin(AdminLTE)-->
|
|
|
|
@vite(['resources/assets/v4/sass/app.scss', 'resources/assets/v4/app.js'])
|
|
@yield('vite')
|
|
|
|
</head>
|