Measures Concepts
GitHub icon

Closure Templates

Closure Templates - Template language

< >

Closure Templates is an open source template language created in 2009.

Source code:
git clone https://github.com/google/closure-templates
#435on PLDB 15Years Old 424kRepos

A client- and server-side templating system that helps you dynamically build reusable HTML and UI elements


Example from the web:
/** * Says hello to the world. */ {template .helloWorld} Hello world! {/template}
Example from Linguist:
{namespace Exmaple} /** * Example */ {template .foo} {@param count: string} {@param? name: int} {if isNonnull($name)} <h1>{$name}</h1> {/if} <div class="content"> {switch count} {case 0} {call Empty.view} {param count: $count /} {/call} {default} <h2>Wow, so many!</h2> {/switch} </div> {/template}

Language features

Feature Supported Token Example
Comments ✓
/* A comment
*/
MultiLine Comments ✓ /* */
/* A comment
*/
Semantic Indentation X

View source

- Build the next great programming language · Search · Add Language · Features · Creators · Resources · About · Blog · Acknowledgements · Queries · Stats · Sponsor · Day 605 · feedback@pldb.io · Logout