Skip to content

Instantly share code, notes, and snippets.

@olance
Created August 28, 2014 00:23
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 olance/6fa9168f3db57278a018 to your computer and use it in GitHub Desktop.
Save olance/6fa9168f3db57278a018 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>An Awesome Blog</title>
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
<% unless params[:nojs] %>
<%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
<% end %>
<%= csrf_meta_tags %>
</head>
<body>
<h1>My Awesome Blog!</h1>
<%= yield %>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment