Sha256: f578de2e3e25e2525e0185ec0c5ea6c976724b8c89418a46ac1f19c768dfbb98
Contents?: true
Size: 666 Bytes
Versions: 6
Compression:
Stored size: 666 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' %> </header> <%= render 'layouts/messages' %> <%= yield %> </body> </html>
Version data entries
6 entries across 6 versions & 1 rubygems