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.
30 lines
1.1 KiB
30 lines
1.1 KiB
<!DOCTYPE html> |
|
<html class="h-100 w-100"> |
|
<head> |
|
<title>CdaoPjet</title> |
|
<meta name="viewport" content="width=device-width,initial-scale=1"> |
|
<%= csrf_meta_tags %> |
|
<%= csp_meta_tag %> |
|
<%= action_cable_meta_tag %> |
|
|
|
<%= stylesheet_pack_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %> |
|
<%= javascript_pack_tag 'application', 'data-turbolinks-track': 'reload' %> |
|
</head> |
|
|
|
<body class="container-fluid h-100 w-100 p-0" data-controller="selectize"> |
|
|
|
<div class="<%= current_user.present? ? 'row flex-nowrap h-100 w-100 p-0 ms-0' : 'row h-100 justify-content-center align-items-center' %>"> |
|
<% if current_user.present? %> |
|
<div class="col-auto col-md-3 col-xl-2 px-sm-2 px-0 bg-secondary min-vh-100" style="padding: 0 !important;"> |
|
<%= render(SidenavComponent.new(current_user: current_user))%> |
|
</div> |
|
<% end %> |
|
|
|
<div class="<%= current_user.present? ? 'col py-3 main-content-body' : 'col-sm-3 login-body-box' %>"> |
|
<div class="content-body"> |
|
<%= yield %> |
|
</div> |
|
</div> |
|
</div> |
|
</body> |
|
</html>
|
|
|