Skip to content

Instantly share code, notes, and snippets.

@jgonzalezd
Created February 12, 2017 00:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jgonzalezd/4569842b715b437984b4d3840341f7ff to your computer and use it in GitHub Desktop.
Save jgonzalezd/4569842b715b437984b4d3840341f7ff to your computer and use it in GitHub Desktop.
Application Layout for better assets pipeline
<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