Sha256: 53c526e5534fb849f8b6da1fde2c4a8619e2e2d113d8d22be830b573cfdbb65b
Contents?: true
Size: 1.66 KB
Versions: 1
Compression:
Stored size: 1.66 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 %>"> <%%# Add gon here for turbolinks benefit %> <%%= Gon::Base.render_data %> <%%= render 'flashes' -%> <%% if devise_controller? %> <% if config[:add_refills] %><%%= render 'refills/navigation' %><% end %> <%%= yield %> <%% else %> <div class='grid-offset'> <div class='work-area'> <% if config[:add_refills] %><%%= render 'refills/navigation' %><% end %> <%%= yield %> </div> </div> <%% end %> <% if config[:add_refills] %><%%= render 'refills/footer' %><% end %> <%%= render 'javascript' %> <%%= render 'css_overrides' %> </body> </html>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
voyage-1.44.0.7 | lib/voyage/templates/voyage_layout.html.erb.erb |