2024-01-14 21:20:14 -06:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
2024-01-11 19:40:58 -06:00
|
|
|
<head>
|
2024-01-14 21:20:14 -06:00
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2024-01-11 19:40:58 -06:00
|
|
|
<title>Obdev</title>
|
2024-01-14 21:20:14 -06:00
|
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
|
2024-01-14 23:57:43 -06:00
|
|
|
<%= csrf_meta_tags %>
|
2024-01-17 02:36:03 -06:00
|
|
|
<%= javascript_pack_tag 'application', 'data-turbolinks-track': 'reload' %>
|
|
|
|
<%= javascript_include_tag 'rails-ujs', 'data-turbolinks-track': 'reload' %>
|
2024-01-16 23:10:18 -06:00
|
|
|
</head>
|
2024-01-14 23:57:43 -06:00
|
|
|
|
2024-01-16 23:10:18 -06:00
|
|
|
<body>
|
2024-01-14 23:57:43 -06:00
|
|
|
|
2024-01-17 02:36:03 -06:00
|
|
|
<%= render 'layouts/navbar' %>
|
|
|
|
|
2024-01-16 23:10:18 -06:00
|
|
|
<%= yield %>
|
2024-01-14 22:28:10 -06:00
|
|
|
|
|
|
|
<p class="notice"><%= notice %></p>
|
|
|
|
<p class="alert"><%= alert %></p>
|
|
|
|
|
2024-01-14 21:20:14 -06:00
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
|
2024-01-17 02:36:03 -06:00
|
|
|
|
2024-01-16 23:10:18 -06:00
|
|
|
</body>
|
2024-01-11 19:40:58 -06:00
|
|
|
</html>
|