Skip to content

Instantly share code, notes, and snippets.

@bigeasy
Created August 24, 2011 01:12
Show Gist options
  • Save bigeasy/1167076 to your computer and use it in GitHub Desktop.
Save bigeasy/1167076 to your computer and use it in GitHub Desktop.
Example Stencil
<!DOCTYPE html>
<html>
<head>
<title>={@title}</title>
</head>
<body>
<h1>People</h1>
%{@people { job: "programmer" }, (people) =>}%
<p>There are ={people.length} programmers among the people.</p>
<ul>
%{for person in people}%
%{fullName = "#{person.firstName} #{person.lastName}"}
<li>={fullName}</li>
%{end}
</ul>
%{end}
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment