Created
February 12, 2017 00:25
-
-
Save jgonzalezd/4569842b715b437984b4d3840341f7ff to your computer and use it in GitHub Desktop.
Application Layout for better assets pipeline
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
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<%= stylesheet_link_tag 'application', media: 'all' %> | |
<%= yield :css %> | |
<%= csrf_meta_tags %> | |
</head> | |
<body> | |
<%= yield %> | |
<%= javascript_include_tag 'application' %> | |
<%= yield :script %> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment