This Pattern is out of the box supported by most of the server technologies like ASP.Net, JSP and ASP.Net MVC
Motivation
Renders information into HTML by embedding markers in an HTML page.
Summary
This pattern is used to create static pages with static marker stub that got replaced at run time either by some computation or some database calls.
A lot of tools use Template View. As a result this pattern isn't about how to build one yourself.
Technologies like ASP.Net and ASP.Net MVC provides out of the box implementation.
One of the most popular forms of Template View is a server page such as ASP, JSP, or PHP.
When to Use
We hardily need handcrafting and most of latest programming frameworks provides built in supports.
Related Patterns
Model View Controller is the main choice is between Template View.
Transform View is an alternative to Template View.
References