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.
28 lines
847 B
28 lines
847 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 %> |
|
|
|
<%= 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="row h-100 w-100 col-sm-12 p-0"> |
|
<% if current_user.present? %> |
|
<div class="col-sm-3 p-0"> |
|
<%= render(SidenavComponent.new(current_user: current_user))%> |
|
</div> |
|
<% end %> |
|
|
|
<div class="col-sm-<%= current_user.present? ? 9 : 12 %>"> |
|
<div class="h-100 w-100 col-sm-12"> |
|
<%= yield %> |
|
</div> |
|
</div> |
|
</div> |
|
</body> |
|
</html>
|
|
|