Sha256: 72e7c3783ac985a66b1490455a4ac92f711a5860aea6fa7b84e824d0940e0bea
Contents?: true
Size: 594 Bytes
Versions: 10
Compression:
Stored size: 594 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 id="container"> <div id="userpanel"> <% if current_user %> <span><b><%= current_user.username %></b></span> <%= link_to "Logout", logout_path %> <% else %> <%= link_to "Login", login_path %> <%= link_to "Register", new_user_path %> <% end %> </div> <%= yield %> </div> </body> </html>
Version data entries
10 entries across 10 versions & 1 rubygems