mirror of
https://github.com/v2board/v2board.git
synced 2024-11-13 02:59:10 +08:00
fix description not show
This commit is contained in:
parent
9dc64114f5
commit
895e0f177b
@ -15,7 +15,8 @@
|
|||||||
title: '{{$title}}',
|
title: '{{$title}}',
|
||||||
theme: '{{$theme}}',
|
theme: '{{$theme}}',
|
||||||
verison: '{{$verison}}',
|
verison: '{{$verison}}',
|
||||||
background_url: '{{$backgroun_url}}'
|
background_url: '{{$backgroun_url}}',
|
||||||
|
description: '{{$description}}'
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
</head>
|
</head>
|
||||||
|
@ -23,6 +23,7 @@ Route::get('/', function (Request $request) {
|
|||||||
'title' => config('v2board.app_name', 'V2Board'),
|
'title' => config('v2board.app_name', 'V2Board'),
|
||||||
'theme' => config('v2board.frontend_theme', 1),
|
'theme' => config('v2board.frontend_theme', 1),
|
||||||
'backgroun_url' => config('v2board.frontend_background_url'),
|
'backgroun_url' => config('v2board.frontend_background_url'),
|
||||||
'verison' => '1.0.3'
|
'verison' => '1.0.4',
|
||||||
|
'description' => config('v2board.app_description', 'V2Board is best')
|
||||||
]);
|
]);
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user