Files
php-the-right-way/_posts/08-01-01-Templating.md
jrfnl 87202921c7 Style consistency Round 2
- spacing of jekyll tags at top of file
- line wrap at 120 chars
- url/link verification and move to bottom and order
2014-12-08 22:05:25 +01:00

517 B
Raw Permalink Blame History

title, anchor
title anchor
Templating templating

Templating

Templates provide a convenient way of separating your controller and domain logic from your presentation logic. Templates typically contain the HTML of your application, but may also be used for other formats, such as XML. Templates are often referred to as "views", which make up part of the second component of the modelviewcontroller (MVC) software architecture pattern.