fix description not show

This commit is contained in:
Tokumeikoi 2020-02-12 23:36:40 +08:00
parent 9dc64114f5
commit 895e0f177b
2 changed files with 4 additions and 2 deletions

View File

@ -15,7 +15,8 @@
title: '{{$title}}',
theme: '{{$theme}}',
verison: '{{$verison}}',
background_url: '{{$backgroun_url}}'
background_url: '{{$backgroun_url}}',
description: '{{$description}}'
}
</script>
</head>

View File

@ -23,6 +23,7 @@ Route::get('/', function (Request $request) {
'title' => config('v2board.app_name', 'V2Board'),
'theme' => config('v2board.frontend_theme', 1),
'backgroun_url' => config('v2board.frontend_background_url'),
'verison' => '1.0.3'
'verison' => '1.0.4',
'description' => config('v2board.app_description', 'V2Board is best')
]);
});