Sha256: 8af511e0c0d90d948567c0f889744dc60f8c92496a48823e902d69c4e20c06ef
Contents?: true
Size: 759 Bytes
Versions: 9
Compression:
Stored size: 759 Bytes
Contents
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title><%%= content_for?(:title) ? yield(:title) : "<%= app_name.underscore.titleize %>" %></title> <meta name="description" content="<%%= content_for?(:description) ? yield(:description) : "<%= app_name.underscore.titleize %>" %>"> <%%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => 'reload' %> <%%= javascript_include_tag 'application', 'data-turbolinks-track' => 'reload' %> <%%= csrf_meta_tags %> </head> <body> <header> <%%= render 'layouts/navigation' %> </header> <main role="main"> <%%= render 'layouts/messages' %> <%%= yield %> </main> </body> </html>
Version data entries
9 entries across 9 versions & 1 rubygems