Skip to content

Instantly share code, notes, and snippets.

@speratus
Last active December 29, 2019 03:05
Show Gist options
  • Save speratus/62291f9d729a573e6b68f1a892ca3ca0 to your computer and use it in GitHub Desktop.
Save speratus/62291f9d729a573e6b68f1a892ca3ca0 to your computer and use it in GitHub Desktop.
The most basic application layout generated courtesy of rails
<!DOCTYPE html>
<html>
<head>
<title>BuildingInfo</title>
<%= csrf_meta_tags %>
<%= csp_meta_tag %>
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %>
<%= javascript_pack_tag 'application', 'data-turbolinks-track': 'reload' %>
</head>
<body>
<%= yield %>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment