Skip to content

Instantly share code, notes, and snippets.

@charleystran
Created March 12, 2013 16:50
Show Gist options
  • Save charleystran/5144628 to your computer and use it in GitHub Desktop.
Save charleystran/5144628 to your computer and use it in GitHub Desktop.
--------------HTML---------------
<html>
<head>
<title>Uberloop</title>
</head>
<body>
<div id='profile_image'>
<img src='s3.amazon.josh_thumb.jpg' />
</div>
<h3>Skills</h3>
<ul>
<li>Financing</li>
<li>Project Management</li>
<li>Marketing</li>
<li>Kayaking</li>
</ul>
</body>
</html>
------------ERB----------------
<html>
<head>
<title>Uberloop</title>
</head>
<body>
<div id='profile_image'>
<%= image_tag @profile.image(:thumb) %>
</div>
<h3>Skills</h3>
<ul>
<% @skils.each do |skill| %>
<li><%= skill.name %></li>
<% end %>
</ul>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment