Sha256: f99cb60aa629f0d29a29b924c97841bc3482e26708d19160f8470cb4e6235c28
Contents?: true
Size: 688 Bytes
Versions: 380
Compression:
Stored size: 688 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_hotwire] || options[:skip_javascript] -%> <%%= stylesheet_link_tag "application" %> <%- else -%> <%%= stylesheet_link_tag "application", "data-turbo-track": "reload" %> <%- end -%> <style> .alert { color: red; } .notice { color: green; } </style> </head> <body> <%%= render 'layouts/navbar' %> <main> <%%= render 'layouts/alerts' %> <%%= yield %> </main> <%%= render 'layouts/footer' %> </body> </html>
Version data entries
380 entries across 65 versions & 1 rubygems