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.
22 lines
600 B
22 lines
600 B
<!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>
|
|
<%= render "layouts/header" %>
|
|
<div class="content">
|
|
<%= yield %>
|
|
</div>
|
|
<%= render "layouts/footer" %>
|
|
</body>
|
|
</html>
|