mirror of
https://github.com/YunoHost-Apps/pixelfed_ynh.git
synced 2024-09-03 20:06:04 +02:00
manifest.json added for webapp declaration
This commit is contained in:
parent
701022cdff
commit
b610ed77a5
2 changed files with 21 additions and 0 deletions
20
public/manifest.json
Normal file
20
public/manifest.json
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
"name": "PixelFed",
|
||||||
|
"short_name": "PixelFed",
|
||||||
|
"start_url": ".",
|
||||||
|
"display": "standalone",
|
||||||
|
"background_color": "#f5f8fa",
|
||||||
|
"description": "Federated Image Sharing",
|
||||||
|
"icons": [
|
||||||
|
{
|
||||||
|
"src": "img/favicon.png",
|
||||||
|
"type": "image/png",
|
||||||
|
"sizes": "153x152"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "img/pixelfed-icon-color.svg",
|
||||||
|
"type": "image/svg",
|
||||||
|
"sizes": "50x50"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -10,6 +10,7 @@
|
||||||
<meta name="mobile-web-app-capable" content="yes">
|
<meta name="mobile-web-app-capable" content="yes">
|
||||||
|
|
||||||
<title>{{ $title ?? config('app.name', 'Laravel') }}</title>
|
<title>{{ $title ?? config('app.name', 'Laravel') }}</title>
|
||||||
|
<link rel="manifest" href="/manifest.json">
|
||||||
|
|
||||||
<meta property="og:site_name" content="{{ config('app.name', 'pixelfed') }}">
|
<meta property="og:site_name" content="{{ config('app.name', 'pixelfed') }}">
|
||||||
<meta property="og:title" content="{{ $title ?? config('app.name', 'pixelfed') }}">
|
<meta property="og:title" content="{{ $title ?? config('app.name', 'pixelfed') }}">
|
||||||
|
|
Loading…
Add table
Reference in a new issue