Created
April 30, 2019 08:06
-
-
Save hmans/3c000f87423d9ad5b73d880bd37ed5c6 to your computer and use it in GitHub Desktop.
Rails 6.0 Application Layout using Slim
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
doctype html | |
html | |
head | |
title My Rails 6.0 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_pack_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