Index: client-modules/page-composer/src/main/java/org/hippoecm/hst/pagecomposer/builtin/components/StandardContainerComponent.java IDEA additional info: Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP <+>UTF-8 =================================================================== --- client-modules/page-composer/src/main/java/org/hippoecm/hst/pagecomposer/builtin/components/StandardContainerComponent.java (revision 38367) +++ client-modules/page-composer/src/main/java/org/hippoecm/hst/pagecomposer/builtin/components/StandardContainerComponent.java (revision ) @@ -35,6 +35,8 @@ response.setRenderPath("classpath:ol.ftl"); } else if ("HST.Span".equalsIgnoreCase(xtype)) { response.setRenderPath("classpath:span.ftl"); + } else if ("HST.hBox".equalsIgnoreCase(xtype)) { + response.setRenderPath("classpath:hbox.ftl"); } else if ("HST.vBox".equalsIgnoreCase(xtype)) { response.setRenderPath("classpath:vbox.ftl"); } else { Index: client-modules/page-composer/src/main/resources/org/hippoecm/hst/pagecomposer/builtin/components/hbox.ftl IDEA additional info: Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP <+>UTF-8 =================================================================== --- client-modules/page-composer/src/main/resources/org/hippoecm/hst/pagecomposer/builtin/components/hbox.ftl (revision ) +++ client-modules/page-composer/src/main/resources/org/hippoecm/hst/pagecomposer/builtin/components/hbox.ftl (revision ) @@ -0,0 +1,37 @@ +<#-- + Copyright 2010-2013 Hippo B.V. (http://www.onehippo.com) + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" + BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. --> + +<#assign hst=JspTaglibs["http://www.hippoecm.org/jsp/hst/core"]> + +<@hst.headContribution keyHint="headTitle"> + + + +<@hst.defineObjects/> +
+ <#list hstResponseChildContentNames as childContentName> +
+ <@hst.include ref="${childContentName}"/> +
+ +
\ No newline at end of file