Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@hmans
Last active October 27, 2023 17:52
Show Gist options
  • Star 28 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save hmans/6918282 to your computer and use it in GitHub Desktop.
Save hmans/6918282 to your computer and use it in GitHub Desktop.
Application layout for Rails (4 and 5), Slim style.
doctype html
html
head
title My App
meta name="viewport" content="width=device-width, initial-scale=1.0"
= stylesheet_link_tag "application", media: 'all', 'data-turbolinks-track' => true
= javascript_include_tag "application", 'data-turbolinks-track' => true
= csrf_meta_tags
body
= yield
@margieI
Copy link

margieI commented Mar 8, 2017

thanks a lot! Very helpful

@damien-roche
Copy link

Note Rails 6 now has csp_meta_tag

@hmans
Copy link
Author

hmans commented Apr 14, 2020

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment