23 lines
846 B
Text
23 lines
846 B
Text
<!doctype html>
|
|
<html data-bs-theme="<%= cookies[:"modeTheme"] || "light" %>" data-controller="set-theme">
|
|
<head>
|
|
<title>a11ydive</title>
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
|
|
<%= csrf_meta_tags %>
|
|
<%= csp_meta_tag %>
|
|
|
|
<%= stylesheet_link_tag "application", "data-turbo-track": "reload" %>
|
|
<%= javascript_include_tag "application", "data-turbo-track": "reload", type: "module" %>
|
|
</head>
|
|
|
|
<body class="d-flex flex-column min-vh-100">
|
|
<%= render partial: "layouts/sidebar" %>
|
|
<%= render partial: "layouts/navigation" %>
|
|
<%= render partial: "layouts/flash" %>
|
|
<main class="mt-3 container">
|
|
<%= yield %>
|
|
</main>
|
|
<footer class="container mt-auto"><%= Rails.configuration.build_version && "Version: #{Rails.configuration.build_version}" %>
|
|
</body>
|
|
</html>
|