mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-28 02:50:39 +00:00
app title fix
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
return [
|
return [
|
||||||
'version' => '2.2.0.1',
|
'version' => '2.2.0.2',
|
||||||
|
|
||||||
'is_demo' => env('APP_DEMO', false),
|
'is_demo' => env('APP_DEMO', false),
|
||||||
|
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
<meta name="description" content="{{ $config->app->description ?? __t('app_description') }}">
|
<meta name="description" content="{{ $config->app->description ?? __t('app_description') }}">
|
||||||
|
|
||||||
<title>
|
<title>
|
||||||
{{ $config->app->title ?? 'VueFileManager' }} | {{ $config->app->description ?? __t('app_description') }}
|
{{ $config->app->name ?? 'VueFileManager' }} | {{ $config->app->description ?? __t('app_description') }}
|
||||||
</title>
|
</title>
|
||||||
|
|
||||||
{{--StyleSheet--}}
|
{{--StyleSheet--}}
|
||||||
@@ -18,14 +18,14 @@
|
|||||||
|
|
||||||
{{--OG items--}}
|
{{--OG items--}}
|
||||||
<meta property="og:url" content="{{ url('/') }}">
|
<meta property="og:url" content="{{ url('/') }}">
|
||||||
<meta property="og:title" content="{{ $config->app->title ?? 'VueFileManager' }} | {{ $config->app->description ?? __t('app_description') }}">
|
<meta property="og:title" content="{{ $config->app->name ?? 'VueFileManager' }} | {{ $config->app->description ?? __t('app_description') }}">
|
||||||
<meta property="og:description" content="{{ $config->app->description ?? __t('app_description') }}">
|
<meta property="og:description" content="{{ $config->app->description ?? __t('app_description') }}">
|
||||||
<meta property="og:image" content="{{ isset($config->logos->og_image) ? url($config->logos->og_image) : '' }}">
|
<meta property="og:image" content="{{ isset($config->logos->og_image) ? url($config->logos->og_image) : '' }}">
|
||||||
|
|
||||||
{{-- Apple Mobile Web App--}}
|
{{-- Apple Mobile Web App--}}
|
||||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||||
<meta name="apple-mobile-web-app-status-bar-style" content="white">
|
<meta name="apple-mobile-web-app-status-bar-style" content="white">
|
||||||
<meta name="apple-mobile-web-app-title" content="{{ $config->app->title ?? 'VueFileManager' }}">
|
<meta name="apple-mobile-web-app-title" content="{{ $config->app->name ?? 'VueFileManager' }}">
|
||||||
|
|
||||||
{{--Icons--}}
|
{{--Icons--}}
|
||||||
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="{{ isset($config->logos->touch_icon) ? url($config->logos->touch_icon) : '' }}">
|
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="{{ isset($config->logos->touch_icon) ? url($config->logos->touch_icon) : '' }}">
|
||||||
|
|||||||
Reference in New Issue
Block a user