Skip to content

Instantly share code, notes, and snippets.

@Phoenix23A
Created February 21, 2017 19:33
Show Gist options
  • Save Phoenix23A/1c4cd7642639165e6169091c6eb29257 to your computer and use it in GitHub Desktop.
Save Phoenix23A/1c4cd7642639165e6169091c6eb29257 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>MyNewApp</title>
<%= stylesheet_link_tag "application", media: "all". "data-turbolinks-track" => true %>
<%= javascript_include_tag "application", "data-turbolinks-track" => true %>
<%= csrf_meta_tags %>
</head>
<body>
<h1>Welcome to Bike Berlin</h1>
<h2>Your source for used bikes in Berlin</h2>
<nav>
<ul>
<li>Home</li>
<li>About</li>
<li>Contact</li>
</ul>
</nav>
<%= yield %>
</body>
<footer>
&copy; 2015 Bike Berlin
</footer>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment