<?xml version="1.0" encoding="UTF-8"?>
<!--
  This file contains customizations of page-type and layout configuration
  found in WEB-INF/classes/com/interwoven/livesite/pagetype-config.xml.
  You can use it to add new page-types and layouts (by specifying a new id)
  or override existing elements (by specifying an id that exists in the
  base file listed above).  Page-types in one file can reference
  layout types in the other, and a page-type in the base file that
  references an overriden layout-type in this file will use the
  overriden layout-type.

  Below are examples of adding a new default page-type that uses
  two new layouts (although they happen to be identical to some
  existing layouts).
-->
<layout-config>
  <page-types>
    <page-type id="Test" default="true">
      <name>Test</name>
      <output>
        <doctype/>
        <method>html</method>
        <content-type>text/html</content-type>
        <omit-xml-declaration>true</omit-xml-declaration>
      </output>

      <allowed-layouts>
        <layout refid="div-layout-marketing"/>
        <layout refid="div-layout-transactional"/>
      </allowed-layouts>
    </page-type>
  </page-types>
  <layouts>
    <layout id="div-layout-marketing">
      <name>Marketing Sites</name>
      <stylesheet>com/interwoven/xsl/runtime/div-layout.marketing.page.xsl</stylesheet>
      <class>com.interwoven.livesite.layout.impl.DivLayout</class>
    </layout>
    <layout id="div-layout-transactional">
      <name>Transactional Sites</name>
      <stylesheet>com/interwoven/xsl/runtime/div-layout.transactional.page.xsl</stylesheet>
      <class>com.interwoven.livesite.layout.impl.DivLayout</class>
    </layout>
  </layouts>
</layout-config>

