mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-20 05:21:27 +00:00
Merge pull request #3504 from shleeable/patch-2
Update about.blade.php - config_cache() doesn't have a fallback argument
This commit is contained in:
commit
53c5190e5f
1 changed files with 3 additions and 3 deletions
|
@ -6,9 +6,9 @@
|
|||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="mobile-web-app-capable" content="yes">
|
||||
<title>{{ config('app.name', 'Pixelfed') }}</title>
|
||||
<meta property="og:site_name" content="{{ config_cache('app.name', 'pixelfed') }}">
|
||||
<meta property="og:title" content="{{ config_cache('app.name', 'pixelfed') }}">
|
||||
<title>{{ config_cache('app.name') ?? 'pixelfed' }}</title>
|
||||
<meta property="og:site_name" content="{{ config_cache('app.name') ?? 'pixelfed' }}">
|
||||
<meta property="og:title" content="{{ config_cache('app.name') ?? 'pixelfed' }}">
|
||||
<meta property="og:type" content="article">
|
||||
<meta property="og:url" content="{{route('site.about')}}">
|
||||
<meta property="og:description" content="{{config_cache('app.short_description')}}">
|
||||
|
|
Loading…
Reference in a new issue