Sha256: 184a39391fe569dd903005e329ed61aa2c883e6356d13d6fc9e966f4c2d11330
Contents?: true
Size: 829 Bytes
Versions: 23
Compression:
Stored size: 829 Bytes
Contents
<!DOCTYPE html> <html> <head> <title><%= camelized %></title> <meta name="viewport" content="width=device-width,initial-scale=1"> <%%= csrf_meta_tags %> <%%= csp_meta_tag %> <%- if options[:skip_javascript] -%> <%%= stylesheet_link_tag 'application' %> <%- else -%> <%- unless options[:skip_turbolinks] -%> <%%= stylesheet_pack_tag 'application', 'data-turbolinks-track': 'reload' %> <%%= javascript_pack_tag 'application', 'data-turbolinks-track': 'reload' %> <%- else -%> <%%= stylesheet_pack_tag 'application' %> <%%= javascript_pack_tag 'application' %> <%- end -%> <%- end -%> </head> <body class="flex flex-col min-h-screen"> <%%= render 'shared/navbar' %> <%%= render 'shared/flashes' %> <main class="flex-grow"> <%%= yield %> </main> <%%= render 'shared/footer' %> </body> </html>
Version data entries
23 entries across 23 versions & 2 rubygems