Image processing with Forestry.io /content/uploads/ folder

You have a context problem in themes/PaperMod/layouts/partials/cover.html.

$.Site in this context is not a thing.

Either rework your partial calls in:

  • themes/PaperMod/layouts/_default/list.html
  • themes/PaperMod/layouts/_default/single.html

Or access with:

$.cxt.Site...

Or use the site function. For example:

site.Title

Instead of modifying files in the theme directory, override them in the project’s layout directory. That way you can update the theme without losing your modifications.

Finally, the common abbreviation for “context” is ctx instead of cxt.

2 Likes