Sha256: 7a8650e23f3656d2134ebcc2f26e6fa701bb489f3e9da15686c051022fbc7e1f

Contents?: true

Size: 466 Bytes

Versions: 4

Compression:

Stored size: 466 Bytes

Contents

<!DOCTYPE html>
<html>
<head>
  <%= javascript_include_tag 'application' %>
  <%= csrf_meta_tag %>
</head>
<body>
  <div id="header">
    <% if logged_in? -%>
      <%= link_to t(".sign_out"), sign_out_path %>
    <% else -%>
      <%= link_to t(".sign_in"), sign_in_path %>
    <% end -%>
  </div>

  <div id="flash">
    <% flash.each do |key, value| -%>
      <div id="flash_<%= key %>"><%=h value %></div>
    <% end %>
  </div>

  <%= yield %>

</body>
</html>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
authenticate-0.7.3 app/views/layouts/application.html.erb
authenticate-0.7.2 app/views/layouts/application.html.erb
authenticate-0.7.1 app/views/layouts/application.html.erb
authenticate-0.7.0 app/views/layouts/application.html.erb