mirror of
https://github.com/v2board/v2board.git
synced 2024-11-10 09:39:10 +08:00
update: fix word
This commit is contained in:
parent
be1f030deb
commit
bd73c3f03a
@ -2,10 +2,10 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<link rel="stylesheet" href="/theme/{{$theme}}/assets/components.chunk.css?v={{$verison}}">
|
||||
<link rel="stylesheet" href="/theme/{{$theme}}/assets/umi.css?v={{$verison}}">
|
||||
<link rel="stylesheet" href="/theme/{{$theme}}/assets/components.chunk.css?v={{$version}}">
|
||||
<link rel="stylesheet" href="/theme/{{$theme}}/assets/umi.css?v={{$version}}">
|
||||
@if (file_exists(public_path("/theme/{$theme}/assets/custom.css")))
|
||||
<link rel="stylesheet" href="/theme/{{$theme}}/assets/custom.css?v={{$verison}}">
|
||||
<link rel="stylesheet" href="/theme/{{$theme}}/assets/custom.css?v={{$version}}">
|
||||
@endif
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1,user-scalable=no">
|
||||
@ -28,8 +28,8 @@
|
||||
header: '{{$theme_header}}',
|
||||
color: '{{$theme_color}}',
|
||||
},
|
||||
verison: '{{$verison}}',
|
||||
background_url: '{{$backgroun_url}}',
|
||||
version: '{{$version}}',
|
||||
background_url: '{{$background_url}}',
|
||||
description: '{{$description}}',
|
||||
crisp_id: '{{$crisp_id}}'
|
||||
}
|
||||
|
@ -25,8 +25,8 @@ Route::get('/', function (Request $request) {
|
||||
'theme_sidebar' => config('v2board.frontend_theme_sidebar', 'light'),
|
||||
'theme_header' => config('v2board.frontend_theme_header', 'dark'),
|
||||
'theme_color' => config('v2board.frontend_theme_color', 'default'),
|
||||
'backgroun_url' => config('v2board.frontend_background_url'),
|
||||
'verison' => config('app.version'),
|
||||
'background_url' => config('v2board.frontend_background_url'),
|
||||
'version' => config('app.version'),
|
||||
'description' => config('v2board.app_description', 'V2Board is best'),
|
||||
'crisp_id' => config('v2board.frontend_customer_service_method') === 'crisp' ? config('v2board.frontend_customer_service_id') : ''
|
||||
];
|
||||
|
Loading…
Reference in New Issue
Block a user