Skip to content

Instantly share code, notes, and snippets.

@sdlong
Created August 3, 2015 11:20
Show Gist options
  • Save sdlong/cb3f89292f5ba41281c8 to your computer and use it in GitHub Desktop.
Save sdlong/cb3f89292f5ba41281c8 to your computer and use it in GitHub Desktop.
app/views/layout/application.html.erb
<!DOCTYPE html>
<html>
<head>
<title>Artstore</title>
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
<%= csrf_meta_tags %>
</head>
<body>
<div class="container">
<%= render "common/navbar" %>
<%= notice_message %>
<%= yield %>
</div>
<%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
<%= yield :handwrite_javascript %>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment