Sha256: b99940d567ece085d5f2c590e4cb22ff1f6a102721e76ef7499462b4f3a2bd00
Contents?: true
Size: 672 Bytes
Versions: 7
Compression:
Stored size: 672 Bytes
Contents
<!DOCTYPE html> <html> <head> <title>Dummy</title> <%= stylesheet_link_tag :all %> <%= javascript_include_tag :defaults %> <%= csrf_meta_tag %> </head> <body> <div id='topnav'> <% if authenticated? %> You are signed in as <% if defined?(current_user) %> <%= current_user.name %>. <% elsif defined?(current_person) %> <%= current_person.name %>. <% end %> <%= link_to 'Sign out', sign_out_path %> <% else %> <%= link_to 'Sign in', sign_in_path %> <% end %> </div> <% flash.each do |key, value| %> <div class='flash <%= key %>'><%= value %></div> <% end %> <%= yield %> </body> </html>
Version data entries
7 entries across 7 versions & 1 rubygems