|
|
|
@ -1,7 +1,7 @@
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<title>Bootcamp</title>
|
|
|
|
|
<title>Movie Selections</title>
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
|
<%= csrf_meta_tags %>
|
|
|
|
|
<%= csp_meta_tag %>
|
|
|
|
@ -12,6 +12,19 @@
|
|
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
<%= yield %>
|
|
|
|
|
<header>
|
|
|
|
|
<div class="alert alert-primary" role="alert">
|
|
|
|
|
<h1>The only movies that actually matter</h1>
|
|
|
|
|
</div>
|
|
|
|
|
</header>
|
|
|
|
|
<div class="content">
|
|
|
|
|
<%= yield %>
|
|
|
|
|
</div>
|
|
|
|
|
<footer>
|
|
|
|
|
<p>
|
|
|
|
|
Copyright © <%= Time.now.year %>
|
|
|
|
|
<%= link_to "Skyleaf Design", "https://skyleafdesign.com/" %>
|
|
|
|
|
</p>
|
|
|
|
|
</footer>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|
|
|
|
|