Sha256: 36efb315ced0e598e6f8332044c74b3fdc65d12bc6581b64e29593e479b707c7
Contents?: true
Size: 764 Bytes
Versions: 41
Compression:
Stored size: 764 Bytes
Contents
<!DOCTYPE html> <html> <head> <title>Dummy</title> <%= stylesheet_link_tag "application" %> <%= javascript_include_tag "application" %> <%= csrf_meta_tags %> </head> <body class="<%= body_classes.join(' ') %>"> <div class="container"> <div class="wrapper"> <% if user_signed_in? %> You are signed in as <%= current_user.email %> <%= link_to "Settings", settings_path %> | <%= link_to "Sign out", destroy_user_session_path, :method => :delete %> <% end %> <h4><%= link_to "Dummy", root_path %></h4> <% flash.each do |name, msg| %> <%= content_tag :div, msg, :id => "flash_#{name}", :class => "flash" if msg.is_a?(String) %> <% end %> <%= yield %> </div> </div> </body> </html>
Version data entries
41 entries across 41 versions & 1 rubygems