View raw

1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title><%= content_for(:title) || "WTT" %></title> 5 <meta name="viewport" content="width=device-width,initial-scale=1"> 6 <meta name="apple-mobile-web-app-capable" content="yes"> 7 <meta name="mobile-web-app-capable" content="yes"> 8 <%= csrf_meta_tags %> 9 <%= csp_meta_tag %> 10 11 <%= yield :head %> 12 13 <%# Enable PWA manifest for installable apps (make sure to enable in config/routes.rb too!) %> 14 <%#= tag.link rel: "manifest", href: pwa_manifest_path(format: :json) %> 15 16 <%= favicon_link_tag "blason_Savoie.png" %> 17 <!-- <link rel="icon" href="/icon.png" type="image/png"> 18 <link rel="icon" href="/icon.svg" type="image/svg+xml"> 19 <link rel="apple-touch-icon" href="/icon.png"> --> 20 21 <%# Includes all stylesheet files in app/assets/stylesheets %> 22 <%= stylesheet_link_tag :app, "data-turbo-track": "reload" %> 23 </head> 24 25 <body> 26 <%= render "layouts/topnav" %> 27 <%= render "layouts/notifications" %> 28 <main> 29 <%= yield %> 30 </main> 31 <%= render "layouts/footer" %> 32 <%= render "layouts/cookies" unless session[:dismissed_banner] %> 33 </body> 34 </html> 35