Hi,
 
In order to be able to support the HTMLArea component, and in order to have a default template for pages I have the following question:
 
I want to be able to both render in the <head> and in the <body> tags. How can I make this happen?
 
An example: each page should include the same stylesheet. in order not to have to edit all pages when the stylesheet changes name, or
another stylesheet is needed, I want to include it in a base class/component which renders my menu (like the CD-app's simple border).
 
So for instance:
 
<html>
    <head>
        <!-- start content from component foo -->
        <script> <!-- ..... --> </script>
        <!-- end content from component foo -->
    </head>
    <body>
        <span id="wcn-[foo]">
            <!-- ..... -->
            <span id="wcn-[body]"/>
        </span>
    </body>
</html>
 

Reply via email to