Skip to content

Instantly share code, notes, and snippets.

@nogweii
Created December 15, 2008 22:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nogweii/36131 to your computer and use it in GitHub Desktop.
Save nogweii/36131 to your computer and use it in GitHub Desktop.
<html>
<head>
<title>WishList</title>
</head>
<body>
<h4>Wishlist for the Shea family</h4>
<? if @items == {} ?>
No items, go add one!
<? else ?>
<ul>
<?
@items.each do |item, tags|
?>
<li><ul>
<li>#{item}</li>
<li>#{tags[0]}</li>
<li>#{tags[1]}</li>
</ul></li>
<? end ?>
</ul>
<? end ?>
<a href="/add">New Item</a>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment