Skip to content

Instantly share code, notes, and snippets.

@hmans
Last active October 23, 2018 21:14
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/21ff35656ac84cdae7f8d1737e70ba88 to your computer and use it in GitHub Desktop.
Save hmans/21ff35656ac84cdae7f8d1737e70ba88 to your computer and use it in GitHub Desktop.
Rails 5.2 Application Layout using Slim
doctype html
html
head
title My Rails 5.2 App
= csrf_meta_tags
= csp_meta_tag
meta name="viewport" content="width=device-width, initial-scale=1.0"
= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload'
= javascript_include_tag 'application', 'data-turbolinks-track': 'reload'
body
= yield
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment