Skip to content

Instantly share code, notes, and snippets.

@mathildathompson
Created May 17, 2013 13:28
Show Gist options
  • Save mathildathompson/5599039 to your computer and use it in GitHub Desktop.
Save mathildathompson/5599039 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>Wikisearch</title>
<%= stylesheet_link_tag "application", :media => "all" %>
<%= javascript_include_tag "application" %>
<%= csrf_meta_tags %>
</head>
<body>
<div id="toolbar">
<div class="musicquiz">
<h2>My Music Quiz</h2>
</div>
<div class="search-box">
<%= form_tag search_path do %>
<%= text_field_tag :search_box, nil, :id => "search_box" %>
<%= submit_tag "search" %>
</div>
<% if user_signed_in? %>
<div class="thumbnail">
<%= image_tag current_user.avatar.thumb.url, :id => 'thumb' %>
</div>
<div class="email">
<%= current_user.email %>
</div>
<% end %>
</div>
<p class="notice"><%= notice %></p>
<p class="alert"><%= alert %></p>
<%end %>
<%= yield %>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment