mokele / templaxe

XML based webpage templating engine and core tag libraries

This URL has Read+Write access

name age message
file README Loading commit data...
directory behaviours/
directory examples/
directory lib/
README
The aim of Templaxe is to give an alternative to language specific web app framework templating engines such as Smarty, 
Django Templates, HAML, Rhtml, etc. This is done by implementing a rendering system similar to JSP taglibs with the 
added core libraries necessary to achieve similar control structures and components required for general web app 
development.
This is a usage example similar to Django Templates extends and block components:

<base:extends
    xmlns="http://www.w3.org/1999/xhtml" 
    xmlns:base="templaxe:base" 
    template="html_base.template">

  <base:block name="title">
    Page Title Here
  </base:block>

  <base:block name="content">
    <p>Page Content Here</p>
  </base:block>
</base:extends>