Skip to content

Instantly share code, notes, and snippets.

@hmans
Created March 27, 2020 10:59
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hmans/1aa5acac56c7ee995900fe65040adeb3 to your computer and use it in GitHub Desktop.
Save hmans/1aa5acac56c7ee995900fe65040adeb3 to your computer and use it in GitHub Desktop.
Rails 6.0 Slim Application Layout
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': 'reload'
= javascript_pack_tag 'application', 'data-turbolinks-track': 'reload'
= csrf_meta_tags
= csp_meta_tag
body
= yield
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment