Skip to content

Instantly share code, notes, and snippets.

@bikashp
Created October 29, 2010 12:48
Show Gist options
  • Save bikashp/653490 to your computer and use it in GitHub Desktop.
Save bikashp/653490 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>Employees23</title>
<%= stylesheet_link_tag 'jquery-ui-1.8.5.custom','scaffold' %>
<%= javascript_include_tag 'jquery-1.4.2.min','jquery.rails','jquery-ui-1.8.5.custom.min' %>
<link rel="stylesheet" href="../../stylesheets/style.css" type="text/css" />
<%= csrf_meta_tag %>
</head>
<body>
<div id = "wrapper">
<div id = "page">
<div id = "content">
<div id="banner">
<div id="logo">&nbsp;</div>
<div id = "employee-status">
<% if employee_signed_in? %>
<span id = "greetings">Hello, <%= current_employee.email %>
|
<%= link_to "Log out", destroy_employee_session_path %>
<% else %>
<%= link_to "Join", new_employee_registration_path %> |
<%= link_to "Log in", new_employee_session_path %>
<% end %>
</div> <!-- end of employee-status -->
</div>
<div>
<%= yield %>
</div>
</div>
</div>
<!-- END OF PAGE -->
</div>
<!-- END OF WRAPPER -->
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment