Skip to content

Latest commit

 

History

History
37 lines (29 loc) · 1.77 KB

templating_you_are_doing_it_wrong.md

File metadata and controls

37 lines (29 loc) · 1.77 KB

Nikolas Martens - "Templating - you're doing it wrong"

At first, templating seems like a good idea: Separate logic from presentation by putting all HTML documents in in their own files. But we still need to glue them to the logic of our application somehow so we use a specialized mark-up language and a matching text-manipulating interpreter to render them. And since there are already at least five different languages in any web application, nobody minds another one or the fact that you can't render a template without having the whole application running.

But this is an unnecessary burden since there already is a widely used and proven mark-up language in every HTML document: the HyperText Markup Language. In this talk, I'm proposing an new approach to writing templates for web applications, called Template Animation, that leverages the capabilities of HTML to create highly maintainable templates, requiring no tools besides the browser for development and testing.

Sources

Notes