ensl.org/app/views/application/_header.html.erb
Luke Barratt 6f56bf81fd Removed fixed topbar
Improved layout
Improved form styling
Fixes issues with firefox
Added menu icons
2014-04-19 02:12:02 +01:00

16 lines
431 B
Text

<header>
<div class="banner">
<div class="wrapper">
<div id="logo">
<%= link_to image_tag("logo.png"), root_path %>
</div>
<div id="authentication" class="<%= 'admin' if cuser && cuser.admin? %>">
<% if cuser %>
<%= render partial: "widgets/logged" %>
<% else %>
<%= render partial: "widgets/login" %>
<% end %>
</div>
</div>
</div>
</header>