Sha256: 5cc98bfb9baf557727fcb2b1f32d3faf0235b5ce3eeff55687f9119094cb8961
Contents?: true
Size: 470 Bytes
Versions: 51
Compression:
Stored size: 470 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 %> <% end %> </div> <%= yield %> </body> </html>
Version data entries
51 entries across 51 versions & 1 rubygems