Sha256: 50884a5964d4db6fd3dbb15e2dda8621925074f1955456c5a4ae0f5e0bbcc98b
Contents?: true
Size: 698 Bytes
Versions: 6
Compression:
Stored size: 698 Bytes
Contents
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title><%= content_for?(:title) ? yield(:title) : "My Application" %></title> <meta name="description" content="<%= content_for?(:description) ? yield(:description) : "My Application" %>"> <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %> <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %> <%= csrf_meta_tags %> </head> <body> <header> <%= render 'layouts/navigation' unless current_page?(root_path) %> </header> <%= render 'layouts/messages' %> <%= yield %> </body> </html>
Version data entries
6 entries across 6 versions & 1 rubygems