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.
26 lines
786 B
26 lines
786 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="h-100 w-100"> |
|
<div class="row container-fluid h-100 w-100 col-sm-12 p-0"> |
|
<div class="col-sm-3 p-0"> |
|
<%= render(SidenavComponent.new(current_user: { username: "admin", email: "[email protected]"}))%> |
|
</div> |
|
|
|
<div class="col-sm-9"> |
|
<div class="h-100 w-100 col-sm-12"> |
|
<%= yield %> |
|
</div> |
|
</div> |
|
</div> |
|
</body> |
|
</html>
|
|
|