Skip to content

Instantly share code, notes, and snippets.

@Phoenix23A
Created February 21, 2017 19:47
Show Gist options
  • Save Phoenix23A/91cc6b94e8df5e977bf2f765aa6ed787 to your computer and use it in GitHub Desktop.
Save Phoenix23A/91cc6b94e8df5e977bf2f765aa6ed787 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>Nameofapp</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
<%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
<%= 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