Sha256: f39b58b3d13de72de61f32edc1d73c45047ee2158d40c522d1e1437d2d3f7e0d
Contents?: true
Size: 629 Bytes
Versions: 10
Compression:
Stored size: 629 Bytes
Contents
<!DOCTYPE html> <html> <head> <title>Dummy</title> <%= stylesheet_link_tag "application", :media => "all" %> <%= javascript_include_tag "application", '//ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js', 'https://raw.github.com/rails/jquery-ujs/master/src/rails.js' %> <%= csrf_meta_tags %> </head> <body> <header> <% if logged_in? %> <span class="user">Hi <%= current_user.name %>. </span><%= button_to 'Log out', main_app.session_path, method: 'delete' %> <% else %> <%= link_to "Log in", main_app.new_session_path %> <% end %> </header> <section> <%= yield %> </section> </body> </html>
Version data entries
10 entries across 10 versions & 1 rubygems