Happens across all themes. Having an apostrophe in the description field of the site.yaml causes a 500 error.
Thanks will investigate this further.
I suspect you are not escaping the apostrophe in the yaml that is already enclosed by apostrophes:
ie:
description: 'Grav Site's Description'
The error by default is hidden by Grav, but you can see it by looking in the /logs folder.
There are three solutions:
a) Escape the apostrophe like so: description: 'Grav Site''s Description'
or
b) Use double quotes around the string: description: "Grav Site's Description"
or
c) Use no quotes at all: description: Grav Site's Description
Awesome, thanks!
Most helpful comment
I suspect you are not escaping the apostrophe in the yaml that is already enclosed by apostrophes:
ie:
description: 'Grav Site's Description'The error by default is hidden by Grav, but you can see it by looking in the
/logsfolder.There are three solutions:
a) Escape the apostrophe like so:
description: 'Grav Site''s Description'or
b) Use double quotes around the string:
description: "Grav Site's Description"or
c) Use no quotes at all:
description: Grav Site's Description