Display site name and description for PWA manifest

This commit is contained in:
R.G. Wood 2023-10-07 13:32:49 +01:00
parent 34d5c557d8
commit 1798abfc3e
No known key found for this signature in database
GPG key ID: 1D961ED22DBF86FA

View file

@ -1,7 +1,7 @@
{% load static %}
{
"name": "Bookwyrm",
"description": "Social network for tracking your reading",
"name": "{{ site.name }}",
"description": "{{ site.description }}",
"icons": [
{
"src": "{% if site.logo %}{{ media_full_url }}{{ site.logo }}{% else %}{% static 'images/logo.png' %}{% endif %}",