Sha256: d9672d75e0accd4c567a3bf99710202302e651e65083f0eb7c7761706b5ca26b
Contents?: true
Size: 589 Bytes
Versions: 1
Compression:
Stored size: 589 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 class="container"> <%= link_to content_tag(:h1, "Dummy App"), root_url %> <% if current_user %> <%= current_user.email %> <%= link_to "Logout", destroy_user_session_path, method: :delete %> <% else %> <%= link_to "Login", new_user_session_path %> <% end %> <%= yield %> </div> </body> </html>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
seems_rateable-2.0.0 | spec/dummy/app/views/layouts/application.html.erb |