2021-03-05 13:59:26 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<!-- Error: {{ session('error') }} -->
|
2022-12-08 01:17:18 +01:00
|
|
|
@if (isset($company) && $company->matomo_url && $company->matomo_id)
|
2022-12-05 15:22:15 +01:00
|
|
|
<script>
|
|
|
|
var _paq = window._paq = window._paq || [];
|
|
|
|
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
|
|
|
|
_paq.push(['trackPageView']);
|
|
|
|
_paq.push(['enableLinkTracking']);
|
|
|
|
(function() {
|
2022-12-07 08:50:36 +01:00
|
|
|
var u="{{ $company->matomo_url }}";
|
2022-12-05 15:22:15 +01:00
|
|
|
_paq.push(['setTrackerUrl', u+'matomo.php']);
|
2022-12-07 08:50:36 +01:00
|
|
|
_paq.push(['setSiteId', '{{ $company->matomo_id }}']);
|
2022-12-05 15:22:15 +01:00
|
|
|
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
|
|
|
|
g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
|
|
|
|
})();
|
|
|
|
</script>
|
2022-12-07 08:50:36 +01:00
|
|
|
<noscript><p><img src="{{ $company->matomo_url }}/matomo.php?idsite={{ $company->matomo_id }}&rec=1" style="border:0;" alt="" /></p></noscript>
|
2022-12-08 01:39:43 +01:00
|
|
|
@elseif (config('services.analytics.tracking_id'))
|
2021-03-05 13:59:26 +01:00
|
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-122229484-1"></script>
|
|
|
|
<script>
|
|
|
|
window.dataLayer = window.dataLayer || [];
|
|
|
|
|
|
|
|
function gtag() {
|
|
|
|
dataLayer.push(arguments);
|
|
|
|
}
|
|
|
|
|
|
|
|
gtag('js', new Date());
|
|
|
|
gtag('config', '{{ config('services.analytics.tracking_id') }}', {'anonymize_ip': true});
|
|
|
|
|
|
|
|
function trackEvent(category, action) {
|
|
|
|
ga('send', 'event', category, action, this.src);
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
<script>
|
|
|
|
Vue.config.devtools = true;
|
|
|
|
</script>
|
|
|
|
@else
|
|
|
|
<script>
|
|
|
|
function gtag() {
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
<!-- Title -->
|
2023-01-03 05:53:43 +01:00
|
|
|
@auth('contact')
|
2022-02-16 03:24:10 +01:00
|
|
|
<title>@yield('meta_title', '') — {{ auth()->guard('contact')->user()->user->account->isPaid() ? auth()->guard('contact')->user()->company->present()->name() : 'Invoice Ninja' }}</title>
|
2021-03-05 13:59:26 +01:00
|
|
|
@endauth
|
|
|
|
|
|
|
|
@guest
|
|
|
|
<title>@yield('meta_title', '') — {{ config('app.name') }}</title>
|
|
|
|
@endguest
|
|
|
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<meta name="description" content="@yield('meta_description')"/>
|
|
|
|
|
|
|
|
<!-- CSRF Token -->
|
|
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
|
|
|
|
|
|
<!-- Scripts -->
|
|
|
|
@if(strpos(Request::url(),'setup') === false)
|
|
|
|
<script src="{{ mix('js/app.js') }}" defer></script>
|
|
|
|
@else
|
|
|
|
<script src="{{ str_replace("setup", "", Request::url())}}js/app.js" defer></script>
|
|
|
|
@endif
|
2021-10-11 14:58:26 +02:00
|
|
|
<script src="{{ asset('vendor/alpinejs@2.8.2/alpine.js') }}" defer></script>
|
2021-03-05 13:59:26 +01:00
|
|
|
|
|
|
|
<!-- Fonts -->
|
2022-09-30 07:23:18 +02:00
|
|
|
{{-- <link rel="dns-prefetch" href="https://fonts.gstatic.com"> --}}
|
|
|
|
{{-- <link href="https://fonts.googleapis.com/css?family=Open+Sans&display=swap" rel="stylesheet" type="text/css" defer> --}}
|
|
|
|
<style>
|
|
|
|
@font-face {
|
|
|
|
font-family: 'Open Sans';
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 400;
|
|
|
|
font-stretch: 100%;
|
|
|
|
font-display: swap;
|
|
|
|
src: url( {{asset('css/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4gaVI.woff2')}}) format('woff2');
|
|
|
|
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
|
|
|
}
|
|
|
|
</style>
|
2021-03-05 13:59:26 +01:00
|
|
|
|
|
|
|
<!-- Styles -->
|
|
|
|
@if(strpos(Request::url(),'setup') === false)
|
2021-03-08 09:59:45 +01:00
|
|
|
<link href="{{ mix('css/app.css') }}" rel="stylesheet">
|
2021-03-05 13:59:26 +01:00
|
|
|
@else
|
2021-03-08 09:59:45 +01:00
|
|
|
<link href="{{ str_replace("setup", "", Request::url())}}css/app.css" rel="stylesheet">
|
2021-03-05 13:59:26 +01:00
|
|
|
@endif
|
|
|
|
{{-- <link href="{{ mix('favicon.png') }}" rel="shortcut icon" type="image/png"> --}}
|
|
|
|
|
|
|
|
<link rel="canonical" href="{{ config('ninja.app_url') }}/{{ request()->path() }}"/>
|
|
|
|
|
|
|
|
{{-- Feel free to push anything to header using @push('header') --}}
|
|
|
|
@stack('head')
|
|
|
|
|
2021-03-08 09:59:45 +01:00
|
|
|
@if(strpos(Request::url(),'setup'))
|
|
|
|
<meta name="setup-pdf-check" content="{{ str_replace("setup", "", Request::url())}}setup/check_pdf">
|
|
|
|
<meta name="setup-db-check" content="{{ str_replace("setup", "", Request::url())}}setup/check_db">
|
|
|
|
<meta name="setup-email-check" content="{{ str_replace("setup", "", Request::url())}}setup/check_mail">
|
|
|
|
@endif
|
|
|
|
|
2021-10-11 14:54:02 +02:00
|
|
|
<link rel="stylesheet" type="text/css" href="{{ asset('vendor/cookieconsent@3/cookieconsent.min.css') }}" />
|
2021-03-05 13:59:26 +01:00
|
|
|
</head>
|
|
|
|
|
|
|
|
@include('portal.ninja2020.components.primary-color')
|
|
|
|
|
|
|
|
<body class="antialiased {{ $custom_body_class ?? '' }}">
|
|
|
|
@if(session()->has('message'))
|
|
|
|
<div class="py-1 text-sm text-center text-white bg-primary disposable-alert">
|
|
|
|
{{ session('message') }}
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
@yield('body')
|
|
|
|
|
2021-10-11 14:54:02 +02:00
|
|
|
<script src="{{ asset('vendor/cookieconsent@3/cookieconsent.min.js') }}" data-cfasync="false"></script>
|
2021-03-05 13:59:26 +01:00
|
|
|
<script>
|
|
|
|
window.addEventListener("load", function(){
|
|
|
|
if (! window.cookieconsent) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
window.cookieconsent.initialise({
|
|
|
|
"palette": {
|
|
|
|
"popup": {
|
|
|
|
"background": "#000"
|
|
|
|
},
|
|
|
|
"button": {
|
|
|
|
"background": "#f1d600"
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"content": {
|
2021-10-04 14:29:15 +02:00
|
|
|
"href": "{{ config('ninja.privacy_policy_url.hosted') }}",
|
2022-12-01 23:45:38 +01:00
|
|
|
"message": "{{ ctrans('texts.cookie_message')}}",
|
|
|
|
"dismiss": "{{ ctrans('texts.got_it')}}",
|
|
|
|
"link": "{{ ctrans('texts.learn_more')}}",
|
2021-03-05 13:59:26 +01:00
|
|
|
}
|
|
|
|
})}
|
|
|
|
);
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
<footer>
|
|
|
|
@yield('footer')
|
|
|
|
@stack('footer')
|
|
|
|
</footer>
|
|
|
|
|
|
|
|
</html>
|