From 1798abfc3e671c339bae14917611cecb347e0786 Mon Sep 17 00:00:00 2001 From: "R.G. Wood" Date: Sat, 7 Oct 2023 13:32:49 +0100 Subject: [PATCH] Display site name and description for PWA manifest --- bookwyrm/templates/manifest.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bookwyrm/templates/manifest.json b/bookwyrm/templates/manifest.json index c7d247cf3..83ad77789 100644 --- a/bookwyrm/templates/manifest.json +++ b/bookwyrm/templates/manifest.json @@ -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 %}",