Sha256: 9dc2f97cf503558da08291e2fe2ffb8805c0be6c8e5274d69a3032041f460215

Contents?: true

Size: 487 Bytes

Versions: 1

Compression:

Stored size: 487 Bytes

Contents

<!DOCTYPE html>
<html>
<head>
  <title>Dummy</title>
  <%= stylesheet_link_tag    'application', media: 'all', 'data-turbolinks-track' => true %>
  <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
  <%= csrf_meta_tags %>
</head>
<body>

<div>
  <% if current_user.nil? %>
    <%= link_to "Login", login_path %>
  <% else %>
    <%= current_user.name %> | <%= link_to "Logout", logout_path, method: :delete %>
  <% end %>
</div>

<%= yield %>

</body>
</html>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
adeia-0.1.0 test/dummy/app/views/layouts/application.html.erb