Created
August 24, 2011 01:12
-
-
Save bigeasy/1167076 to your computer and use it in GitHub Desktop.
Example Stencil
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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