Skip to content

Instantly share code, notes, and snippets.

@mmower
Forked from mattstifanelli/tryErb.erb
Created May 12, 2011 15:14
Show Gist options
  • Save mmower/968707 to your computer and use it in GitHub Desktop.
Save mmower/968707 to your computer and use it in GitHub Desktop.
ERB File with Ruby code embedded into HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>try erb</title>
</head>
<body>
<p>
<% 99.downto(96) do |number| %>
<%= number %> bottles of beer…<br>
<% end %>
</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment