Download
We're evolving to serve you better! This current forum has transitioned to read-only mode. For new discussions, support, and engagement, we've moved to GitHub Discussions.

Theme and questions

#3557
Avatar photoBob

Hi Constantin,

First of all: great work, really. It’s cool to see something new done by someone other than our team.

In terms of your questions:

  1. Publii generates only one featured image; the post config options also do not offer the image type (https://getpublii.com/dev/post-config-options/), so it’s not easy to import here any other images than featured.
  2. All you can do is provide only one image (in head.hbs), for example:
    <style>
     body {
       background-image: url({{@website.assetsUrl}}/images/overlay.png), linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url({{@config.custom.uploadHero}});
      }
    </style>