[#if !portalUtil.isSystemGroup(themeDisplay.getScopeGroupName())]
[#if paramUtil.get(themeDisplay.getRequest(), "preview", false)]
[@liferay_aui.style]
.control-menu-container {
display: none
}
[/@]
[/#if]
[#assign groupId = themeDisplay.getScopeGroupId() /]
[#assign response = restClient.get("/headless-digital-sales-room/v1.0/digital-sales-rooms/${groupId}") /]
[#if !response?has_content || !response.id?has_content]
[#assign response = restClient.get("/headless-digital-sales-room/v1.0/digital-sales-room-templates/${groupId}") /]
[/#if]
[#if response?has_content && response.banner?has_content]
[@liferay_aui.style]
.dsr-header-banner {
background-image: url(${response.banner.fileURL})
}
[/@]
[#else]
[@liferay_aui.style]
.dsr-header-banner {
background-image: url([resources:banner.png])
}
[/@]
[/#if]
[/#if]