Contelligent Markup Basics II
To illustrate what it means that components render themselves, we provide one more example of a ListFolder that renders all its subcomponents.
Again, guess what the following markup will produce:

component tree for MarkupBasics-II
<html>
<head>
<title><finix:render path="page-title"/></title>
</head>
<body>
<div class="title"><finix:render path="page-title"/></div>
<div class="output-box">
<div class="left-title">Output:</div>
<div class="code"><finix:render path="list-folder"/></div>
</div>
</body>
</html>
Markup of MarkupBasics-II
The <finix:render path="list-folder"/> tag will be evaluated to render a list of all components residing in the list-folder ListFolder. Thus, you simply see a list of entries whose content is rendered iterating over the subcomponents of 'list-folder'.
The next tutorial step will show how a <finix:render path="..."/> can be used to influence the way component render themselves. The mechanism to achieve this is called Parameterized Rendering.




