Skip to content

Instantly share code, notes, and snippets.

@hopsoft
Last active August 29, 2015 14: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 hopsoft/580bf7b2a12b7a7a31b5 to your computer and use it in GitHub Desktop.
Save hopsoft/580bf7b2a12b7a7a31b5 to your computer and use it in GitHub Desktop.
JavaScript Modules Layout
<!DOCTYPE html>
<html>
<head>
<title>Example</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<%= stylesheet_link_tag 'application', media: 'all' %>
<%= csrf_meta_tags %>
</head>
<body>
<%= yield %>
<%= javascript_include_tag 'modules/requirejs' %>
<%= javascript_modules_tag %>
<%= javascript_include_tag 'application' %>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment