Hi, I have a BaseLayout and using it a specific layout (let's call it FooLayout). BaseLayout is like this:
<html lang="en">
<head>
<BaseHead title={title} description={description} permalink={permalink} />
</head>
<body>
<div class="layout">
<Header current={current} />
<main>
<slot />
</main>
<Footer />
</div>
<div class="background-container"></div>
</body>
</html>
while the other layout is like this
<BaseLayout
title={title}
description={description}
permalink={permalink}
current={current}
>
<div class="dnd-container">
<slot />
</div>
</BaseLayout>
I want FooLayout to change the background image of background-container, using an image Url that is determined by code in FooLayout. How can I do that?