buyplaytix / html_template_nest
Installs: 1 068
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 3
Forks: 0
Open Issues: 0
Requires
- memio/memio: ^2.0
- natxet/cssmin: ^3.0.6
- oyatel/minify: dev-master
Requires (Dev)
- phing/phing: ^2.16
- phpunit/phpunit: ~5.4
README
Well-Formed xml templating for PHP
HTML_Template_Nest provides xml based templating based on JSP 2.0. Documents are well formed and can be trivially added to with custom tags. Below is a trivial grocery list.
<html xmlns:c="urn:nsttl:HTML_Template_Nest_Taglib_Standard">
<body>
<h3>Shopping List</h3>
<ul>
<c:foreach items="groceryList" var="shoppingListItem">
<li>${shoppingListItem}</li>
</c:foreach>
</ul>
</body>
</html>
See (http://tthomas48.github.com/HTML_Template_Nest/) for full documentation.