libreccm-legacy/ccm-ldn-theme/web/__ccm__/apps/theme/xsl/section.xsl

20 lines
688 B
XML
Executable File

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
xmlns:bebop="http://www.arsdigita.com/bebop/1.0"
xmlns:cms="http://www.arsdigita.com/cms/1.0"
>
<!-- TODO: this is a copy of the file at /cms/web/__ccm__/static/cms/admin/layout-panel/layout-panel.xsl and should be deleted when that file is moved in to core. -->
<xsl:template match="bebop:section">
<div class="section">
<div class="heading">
<xsl:apply-templates select="bebop:heading/*"/>
</div>
<div class="body">
<xsl:apply-templates select="bebop:body/*"/>
</div>
</div>
</xsl:template>
</xsl:stylesheet>