Sha256: ae0bde1c80a6468343ce98fc3b189f3acd8b22bac9c5ece2a106a4f266a6b15c
Contents?: true
Size: 1.5 KB
Versions: 6
Compression:
Stored size: 1.5 KB
Contents
<!DOCTYPE html> <html lang="<%= I18n.locale %>"> <head> <meta charset="utf-8" /> <meta name="ROBOTS" content="NOODP" /> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" /> <meta name="apple-mobile-web-app-capable" content="yes" /> <meta name="mobile-web-app-capable" content="yes" /> <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" /> <%%# Configure default and controller-, and view-specific titles in config/locales/en.yml. For more see: https://github.com/calebthompson/title#usage %> <title><%%= title %></title> <%%= stylesheet_link_tag :application, media: "all" %> <link rel='apple-touch-icon' href='/assets/apple-touch-icon.png' /> <%%= csrf_meta_tags %> <%%= favicon_link_tag 'favicon.ico' %> <%%# Add gon here for gon use inside the compiled js before the page is fully loaded %> <%%= Gon::Base.render_data %> </head> <body class="<%%= devise_controller? ? 'devise' : 'application' %> <%%= body_class %>"> <div class='outer-wrapper'> <%%# Add gon here for turbolinks benefit %> <%%= Gon::Base.render_data %> <%%= render 'flashes' -%> <% if config[:add_refills] %><%%= render 'refills/navigation' %><% end %> <div class='main'> <%%= yield %> </div> <% if config[:add_refills] %><%%= render 'refills/footer' %><% end %> <%%= render 'javascript' %> <%%= render 'css_overrides' %> </div> </body> </html>
Version data entries
6 entries across 6 versions & 1 rubygems