Sha256: e03d888efbf180e42ff794dfdc07c2541bdc6a3ee166f0c019579777d7501b9b
Contents?: true
Size: 529 Bytes
Versions: 8
Compression:
Stored size: 529 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 current_user %> You are signed in as <%= current_user.name %>. <%= 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
8 entries across 8 versions & 1 rubygems