Hi Ivo,
On Sun, 2018-03-04 at 16:15 -0700, ivoleitao wrote:
> Then I would like that a customer uses my definition as base but only
> with a
> customization on the css and on the logo
>
> /apps/acme/img/logo.png
> /apps/acme/css/acme.css
>
> and on content
>
> /content/clientacme
The simplest way I see this happening is via a component. Define a
'layout' or 'logo' component at /libs/my/component and allow the
customer to overlay it at /apps/my/component .
Alternatively, you can write another component and lookup the design
resources using `ResourceResolver.getResource` and a relative path,
e.g.
resolver.getResource("acme/img/logo.png");
which would first look under /apps and then under /libs.
Thanks,
Robert