www.studyforrest.org/content/static/site.webmanifest
Alex Waite 2e29444c01 fix favicons; copy static/ correctly
This was broken with the move away from the Makefile (where we simply
used rsync).

STATIC_PATHS only searches in Pelican's PATH, which is set to content/.
Escaping the PATH using ../ does not make pelican happy, and causes it
to throw warnings everywhere and attempt overwriting its own static
files.

There is no way I can find of to copy an entire folder into the top-level
of output.

STATIC_PATHS only accepts dirs, and EXTRA_PATH_METADATA does not accept
patterns or wildcards for the key.

So this is the solution I've come up with: specifying each file by hand.

Sigh...
2021-04-29 11:34:48 +02:00

16 lines
274 B
JSON

{
"name": "studyforrest",
"icons": [
{
"src": "\/android-chrome-192x192.png?v=5",
"sizes": "192x192",
"type": "image\/png"
},
{
"src": "\/android-chrome-512x512.png?v=5",
"sizes": "512x512",
"type": "image\/png"
}
],
"theme_color": "#ffffff"
}