Sha256: f17c0388558a6fee3dbd90d32dce5a1d08039ae9f049088347a420653dbdc34b
Contents?: true
Size: 861 Bytes
Versions: 7
Compression:
Stored size: 861 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" => true %> <%%# Modernizr is required for Zurb Foundation %> <%%= javascript_include_tag "vendor/modernizr" %> <%%= javascript_include_tag "application", "data-turbolinks-track" => true %> <%%= csrf_meta_tags %> </head> <body> <header> <%%= render 'layouts/navigation' %> </header> <main role="main"> <%%= render 'layouts/messages' %> <%%= yield %> </main> </body> </html>
Version data entries
7 entries across 7 versions & 1 rubygems