-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add favicon and PWA manifest (#1137)
* Fix favicon/add web manifest * improve manifest * Add screenshot
- Loading branch information
Showing
12 changed files
with
91 additions
and
3 deletions.
There are no files selected for viewing
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
{ | ||
"name": "Western Friend", | ||
"short_name": "Western Friend", | ||
"description": "Western Friend is a Quaker publication that provides resources and support for Quaker communities and individuals seeking to live out their faith in the world. Western Friend is part of the Religious Society of Friends.", | ||
"icons": [ | ||
{ | ||
"src": "/static/img/icon-192x192.png", | ||
"sizes": "192x192", | ||
"type": "image/png", | ||
"purpose": "any maskable" | ||
}, | ||
{ | ||
"src": "/static/img/icon-512x512.png", | ||
"sizes": "512x512", | ||
"type": "image/png", | ||
"purpose": "any maskable" | ||
}, | ||
{ | ||
"src": "/static/img/icon-1024x1024.png", | ||
"sizes": "1024x1024", | ||
"type": "image/png", | ||
"purpose": "any maskable" | ||
} | ||
], | ||
"theme_color": "#ffffff", | ||
"background_color": "#ffffff", | ||
"display": "standalone", | ||
"display_override": ["standalone", "minimal-ui"], | ||
"start_url": "/", | ||
"scope": "/", | ||
"orientation": "any", | ||
"lang": "en-US", | ||
"categories": [ | ||
"social", | ||
"networking", | ||
"community", | ||
"news", | ||
"magazines", | ||
"education", | ||
"religion", | ||
"books" | ||
], | ||
"apple-mobile-web-app-capable": "yes", | ||
"apple-mobile-web-app-status-bar-style": "black-translucent", | ||
"apple-mobile-web-app-title": "Western Friend", | ||
"edge_side_panel": { | ||
"preferred_width": 400 | ||
}, | ||
"screenshots": [ | ||
{ | ||
"src": "/static/img/screenshot.jpg", | ||
"sizes": "1280x720", | ||
"type": "image/jpeg", | ||
"form_factor": "wide" | ||
} | ||
], | ||
"shortcuts": [ | ||
{ | ||
"name": "Latest Magazine", | ||
"url": "/magazine/", | ||
"description": "View the latest magazine issue" | ||
}, | ||
{ | ||
"name": "Subscribe", | ||
"url": "/subscribe/", | ||
"description": "Subscribe to Western Friend" | ||
}, | ||
{ | ||
"name": "Donate", | ||
"url": "/donate/", | ||
"description": "Support Western Friend" | ||
}, | ||
{ | ||
"name": "About", | ||
"url": "/about/", | ||
"description": "Learn more about Western Friend" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters