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
988 B
30 lines
988 B
<!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"> |
|
|
|
<div class="<%= current_user.present? ? 'row flex-nowrap h-100 w-100 p-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-dark"> |
|
<%= render(SidenavComponent.new(current_user: current_user))%> |
|
</div> |
|
<% end %> |
|
|
|
<div class="<%= current_user.present? ? 'col py-3' : 'col-sm-3' %>"> |
|
<div > |
|
<%= yield %> |
|
</div> |
|
</div> |
|
</div> |
|
</body> |
|
</html>
|
|
|