C# Templates

This project implements a simple templating system in C# using theDjango style {{ varName }}, double curly notation. The class wasimplemented specifically for templatizing html/javascript but can beused with any file type.

The templates only do replacements.Unlike Django, there are no conditional statements, for loops etc..This can all be accomplished however within C# itself, keeping layoutcode totally separated from logic, something I have come to appreciatein managing my own code.

Go to http://code.google.com/p/csharptemplates/

See also these related projects.