Templify

There are quite a lot of template engines out there for php. I am not satisfied with most of them for a single reason: php itself is a template engine.
Moreover, lots of them are bloated with functionality that I do not use.

I created Templify, a simple php5 Template engine that does not implement its own syntax. Instead all templates are written in 100% php. They look like this:

  <h1><?= $title ?></h1>
  <p>Hello my name is <?= $name ?> and this is my website.</p>

Thus, they can be altered comfortably in every editor or IDE that supports php (from emacs to eclipse).
Moreover, I added some caching functionality.
Templify is work in progress and available under LGPL licence at Google Code.

Technologies