Sha256: cfd99b87ee44bc9459fd4c2093115fc0dc06874b2b13310ffa39460b1fa74cd1
Contents?: true
Size: 876 Bytes
Versions: 9
Compression:
Stored size: 876 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' %> <%%# Modernizr is required for Zurb Foundation %> <%%= javascript_include_tag "vendor/custom.modernizr" %> <%%= 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