You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Movie Selections</title>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
<%= csrf_meta_tags %>
|
|
|
|
<%= csp_meta_tag %>
|
|
|
|
|
|
|
|
<%= stylesheet_link_tag "application", "data-turbo-track": "reload" %>
|
|
|
|
<%= stylesheet_link_tag "application", "https://cdn.jsdelivr.net/npm/bootstrap/dist/css/bootstrap.min.css" %>
|
|
|
|
<%= javascript_importmap_tags %>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<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>
|