Skip to content

Instantly share code, notes, and snippets.

@alanmaciel
Last active February 26, 2018 03:58
Show Gist options
  • Save alanmaciel/920ea32722ae1457fcfe4aab77b6fe31 to your computer and use it in GitHub Desktop.
Save alanmaciel/920ea32722ae1457fcfe4aab77b6fe31 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>Application</title>
<%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true %>
<%= javascript_include_tag "application", "data-turbolinks-track" => true %>
<%= csrf_meta_tags %>
</head>
<body>
<%= render "layouts/header" %>
<div id="wrapper">
<%= render "layouts/flashes" %>
<div id="container">
<section id="sidebar">
<%= render "layouts/sidebar" %>
</section>
<section id="content">
<%= yield %>
</section>
</div>
</div>
<%= render "layouts/footer" %>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment