====== EZ Publish ====== [[http://ez.no/developer|eZPublish Homepage]] eZ publish is a professional open source content management system (CMS) and a development framework (CMF). While the CMS is standardized out of the box functionality and solutions of eZ publish, the CMF consists of flexible engines for further customization and extensions. The CMS and CMF are seamlessly integrated in the eZ publish distribution. Based on the same software, eZ publish has two versions; the eZ publish Pro (a commercial non-GPL version) and eZ publish GPL (free open source GPL licence version). Interesting aspect of eZPublish 3.x is [[http://ez.no/sdk/tutorials/view/content_classes|Content Classes]]. ===== Templates ===== [[http://ez.no/sdk/tutorials/view/templateissues|eZPublish_3_Templates]] here. A pure pull based template system using a custom imperative syntax style. e.g. {* set children variable *} {let children=fetch('content',list,hash(parent_node_id,$node.node_id))}

{$node.name}

{* loop children and print name *} {section name=Child loop=$children} {$Child:item.name}
{/section} {/let}