Skip to content

Instantly share code, notes, and snippets.

@smailq
Created November 19, 2011 19:11
Show Gist options
  • Save smailq/1379223 to your computer and use it in GitHub Desktop.
Save smailq/1379223 to your computer and use it in GitHub Desktop.
// main.soy
{namespace main}
/**
* Header
* @param name Name of the person
*/
{template .header}
<h1>Hello, {$name}!</h1>
{/template}
/**
* Renders main page
*/
{template .body}
I'm a main body!
{/template}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment